What will the following code display?
try { Console.WriteLine(((string)null + null + null) == null); } catch (Exception e) { Console.WriteLine(e.GetType()); }
Solution
Last updated 5 years ago