Program.cs 246 B

1234567891011121314
  1. using System;
  2. namespace HelloWorld
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. Console.WriteLine("Hello World!");
  9. Console.WriteLine(typeof(object).Assembly.Location);
  10. }
  11. }
  12. }