Skip to content

Instantly share code, notes, and snippets.

@aoisensi
Created November 6, 2013 07:54
Show Gist options
  • Save aoisensi/7332446 to your computer and use it in GitHub Desktop.
Save aoisensi/7332446 to your computer and use it in GitHub Desktop.
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