Ad
  • Default User Avatar

    It actually works better than you expect (and I'm saying that because it took me a while to figure it out). You can either use a fully qualified name like:

    System.Console.WriteLine("Debug Info");
    

    or add the Using at the top and then use the shorter name:

    Using System;
    ...
    Console.WriteLine("Debug Info");