Created
November 6, 2013 07:54
-
-
Save aoisensi/7332446 to your computer and use it in GitHub Desktop.
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
class Program | |
{ | |
const string OUTPUT = (string)Extensions.Null; | |
static void Main(string[] args) { } | |
} | |
class Extensions | |
{ | |
public const Extensions Null = null; | |
const string s = "255,0,0:0,255,0;0,0,255:255,255,255"; | |
public static explicit operator string(Extensions _) | |
{ | |
return s; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment