Skip to content

Instantly share code, notes, and snippets.

@richlander
Created July 20, 2015 17:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richlander/f35213d2f61382d1ce67 to your computer and use it in GitHub Desktop.
Save richlander/f35213d2f61382d1ce67 to your computer and use it in GitHub Desktop.
C# 6 Static Imports
using static System.Console;
using static System.Math;
using static System.DayOfWeek;
class Program
{
static void Main()
{
WriteLine(Sqrt(3 * 3 + 4 * 4));
WriteLine(Friday - Monday);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment