document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. class Program
  2. {
  3.     static void Main(string[] args)
  4.     {
  5.         try
  6.         {
  7.             string myString = null;
  8.             Validate.IsNotNull(() => myString);
  9.         }
  10.         catch (Exception e)
  11.         {
  12.             Console.WriteLine(e.Message);
  13.         }
  14.  
  15.         Console.Read();
  16.     }
  17. }
');