Repro.foo C# (CSharp) Method

foo() public method

public foo ( ) : void
return void
 	public void foo()
 	{
 		fc = cc = bar();
 		fc = stack[sp++] = cc;
 	}

Usage Example

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;
 }
All Usage Examples Of Repro::foo