intro to a simple .NET app

using System;

namespace MyCoolApp
{
  class Program
  {
    static void Main(string[] args)
    {
      Console.WriteLine("Welcome to C#");
    }
  }
}
Made with Slides.com