C Sharp (C#) - Exception Handling
What will be the output of this C# code?
try {
string s = null;
Console.WriteLine(s.Length);
} catch (ArgumentNullException) {
Console.WriteLine("Argument null error");
} catch (NullReferenceException) {
Console.WriteLine("Null reference error");
} catch (Exception) {
Console.WriteLine("General error");
}