“StringPlusNull” (Problem)
What will the following code display?
try
{
Console.WriteLine(((string)null + null + null) == null);
}
catch (Exception e)
{
Console.WriteLine(e.GetType());
}
Last updated
Was this helpful?
What will the following code display?
try
{
Console.WriteLine(((string)null + null + null) == null);
}
catch (Exception e)
{
Console.WriteLine(e.GetType());
}
Last updated
Was this helpful?