foo() public method

public foo ( ) : void
return void
コード例 #1
0
 static int Main()
 {
   Repro r = new Repro();
   r.foo();
   Console.WriteLine(r.stack[0]);
   return r.stack[0] == 42 ? 0 : 1;
 }
コード例 #2
0
ファイル: test-527.cs プロジェクト: pmq20/mono_forked
    public static int Main()
    {
        Repro r = new Repro();

        r.foo();
        Console.WriteLine(r.stack[0]);
        return(r.stack[0] == 42 ? 0 : 1);
    }
コード例 #3
0
ファイル: test.cs プロジェクト: mono/gert
 	static int Main()
 	{
 		Repro r = new Repro();
 		r.foo();
		return r.stack[0] == 42 ? 0 : 1;
 	}