示例#1
0
    static int Main()
    {
        A2.N <short> b1 = A2.N <short> .Method();

        A.N <byte> b2 = A.N <byte> .Method();

        return(0);
    }
示例#2
0
    public static void Main()
    {
        dynamic n = new A.N();

        n.Test();
    }
示例#3
0
文件: dtest-049.cs 项目: nobled/mono
	public static void Main ()
	{
		dynamic n = new A.N ();
		n.Test ();
	}