void Invocation03() { int j, l = 0; Console.WriteLine(l); OutInMethodsClass.Method(0, out j, ref l); }
void Invocation17A() { int j; { OutInMethodsClass.Bool(OutInMethodsClass.Bool(OutInMethodsClass.Method(0, out j))); } }
void Invocation16() { int j; { OutInMethodsClass.Method(0, out j); } }
void Invocation02A() { int l = 0; int j; { Console.WriteLine(l); OutInMethodsClass.Method(0, out j, ref l); } }
void Invocation05() { int j, l = 0; Console.WriteLine(l); if (OutInMethodsClass.Method(0, out j, ref l) == false) { // ... } }
void Invocation19() { int j; Action a = delegate() { OutInMethodsClass.Method(0, out j); }; a(); }
void Invocation18() { int j; Action a = () => { OutInMethodsClass.Method(0, out j); }; a(); }
void Invocation13() { int j, l = 0; Console.WriteLine(l); for (; OutInMethodsClass.Method(0, out j, ref l); l++) { l = 0; } }
void Invocation14(bool input) { int j, l = 0; Console.WriteLine(l); for (; input; OutInMethodsClass.Method(0, out j, ref l), l++) { // ... } }
void Invocation11() { int j, l = 0; Console.WriteLine(l); for (bool b = OutInMethodsClass.Method(0, out j, ref l); b != true;) { l = 0; } }
void Invocation10() { int j, l = 0; Console.WriteLine(l); while (OutInMethodsClass.Method(0, out j, ref l)) { l = 0; } }
void Invocation04A() { int j, l = 0; { Console.WriteLine(l); if (OutInMethodsClass.Method(0, out j, ref l)) { // ... } } }
void Invocation06() { int j, l = 0; Console.WriteLine(l); if (OutInMethodsClass.Method(0, out j, ref l)) { // ... } else { l = 1; } }
void Invocation08() { int j, l = 0; Console.WriteLine(l); switch (OutInMethodsClass.Method(0, out j, ref l)) { case true: l = 0; break; case false: l = 0; break; default: l = 0; break; } }
void Invocation09() { int j, l = 0; Console.WriteLine(l); switch (l) { case 1: OutInMethodsClass.Method(0, out j, ref l); l = 0; break; case 2: l = 0; break; default: l = 0; break; } }