コード例 #1
0
ファイル: test-15.cs プロジェクト: kdoman21/mono
	public static int Main ()
	{
		Iface iface;
		Implementor i = new Implementor ();

		iface = i;
		if (iface.A () != 1)
			return 1;

		StructImplementor s = new StructImplementor ();
		Iface xiface = (Iface) s;
		if (xiface.A () != 2)
			return 2;
		
		return 0;
	}
コード例 #2
0
ファイル: test-15.cs プロジェクト: mortezabarzkar/SharpNative
	public static int Main ()
	{
		Iface iface;
		Implementor i = new Implementor ();

		iface = i;
		if (iface.A () != 1)
			return 1;

		StructImplementor s = new StructImplementor ();
		Iface xiface = (Iface) s;
		if (xiface.A () != 2)
			return 2;
		
		Console.WriteLine("passed");
		return 0;
	}
コード例 #3
0
ファイル: test-15.cs プロジェクト: SickheadGames/BRUTE.mono
    public static int Main()
    {
        Iface       iface;
        Implementor i = new Implementor();

        iface = i;
        if (iface.A() != 1)
        {
            return(1);
        }

        StructImplementor s      = new StructImplementor();
        Iface             xiface = (Iface)s;

        if (xiface.A() != 2)
        {
            return(2);
        }

        return(0);
    }
コード例 #4
0
    public static int Main()
    {
        Iface       iface;
        Implementor i = new Implementor();

        iface = i;
        if (iface.A() != 1)
        {
            return(1);
        }

        StructImplementor s      = new StructImplementor();
        Iface             xiface = (Iface)s;

        if (xiface.A() != 2)
        {
            return(2);
        }

        Console.WriteLine("passed");
        return(0);
    }