Example #1
0
	public static int Main ()
	{
		IC ic = new C2 ();
		if (ic.Foo () != 2)
			return 1;

		if (ic.Foo2 () != 2)
			return 2;
		
		return 0;
	}
Example #2
0
    public static int Main()
    {
        IC ic = new C2();

        if (ic.Foo() != 2)
        {
            return(1);
        }

        if (ic.Foo2() != 2)
        {
            return(2);
        }

        return(0);
    }