Created
July 20, 2015 17:42
-
-
Save richlander/f35213d2f61382d1ce67 to your computer and use it in GitHub Desktop.
C# 6 Static Imports
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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