foo() public method

public foo ( ) : void
return void
Esempio n. 1
0
 static int Main()
 {
   Repro r = new Repro();
   r.foo();
   Console.WriteLine(r.stack[0]);
   return r.stack[0] == 42 ? 0 : 1;
 }
Esempio n. 2
0
    public static int Main()
    {
        Repro r = new Repro();

        r.foo();
        Console.WriteLine(r.stack[0]);
        return(r.stack[0] == 42 ? 0 : 1);
    }
Esempio n. 3
0
File: test.cs Progetto: mono/gert
 	static int Main()
 	{
 		Repro r = new Repro();
 		r.foo();
		return r.stack[0] == 42 ? 0 : 1;
 	}