Using static

using static System.Console

function Start( ) as void

  WriteLine( "Hello X#" )
  // equivalent to:
  // System.Console.WriteLine( "Hello X#" )

return