C Sharp (C#) - Polymorphism and Abstract Classes
What will be the output of this code?
object val = 456; string str = val as string; Console.WriteLine(str == null ? "No string" : str);
