Posted by Richard Thu 15th Mar 2007 15:55 - Syntax is Python - 47 views
Download | New Post | Modify | Show line numbers
    private enum XXX {
        ETT = 1,
        TVA = 2
    } ;


    protected void Page_Load(object sender, EventArgs e)
    {
        XXX v;
        XXX? v2;
        v = (XXX)1;
        v2 = (XXX?)2;
        v2 = Convert.ChangeType(2, typeof (XXX?));
    }

PermaLink to this entry https://pastebin.co.uk/11899
Posted by Richard Thu 15th Mar 2007 15:55 - Syntax is Python - 47 views
Download | New Post | Modify | Show line numbers

 

Comments: 0