C Sharp (C#) - Polymorphism and Abstract Classes
What will be printed by the following code?
object data = "world"; string text = data as string; Console.WriteLine(text != null ? text.ToUpper() : "empty");
