Skip to content

Instantly share code, notes, and snippets.

@jfmaes
Last active December 20, 2020 21:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jfmaes/e3324bb0a6443858a1e38a4f2580bda3 to your computer and use it in GitHub Desktop.
Save jfmaes/e3324bb0a6443858a1e38a4f2580bda3 to your computer and use it in GitHub Desktop.
Sample Hello World for blogpost
using System;
using System.Reflection;
namespace HelloFromDotNetFramework
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hi from {0}", Assembly.GetExecutingAssembly());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment