using System;
public class Program
{
public static void Main()
WillItThrowException("Test");
WillItThrowException(null);
}
private static void WillItThrowException(string input)
Console.WriteLine(input.Equals(null));