C Sharp (C#) - Polymorphism and Abstract Classes
Identify the error in this code snippet:
object obj = new StringBuilder(); string s = obj as string; if (s.Length > 0) Console.WriteLine(s);
