namespace ...
{
class Class1
{
public void test(out int a){
a = 1;
return;
}
}
}
static void Main()
{
Class1 c1 = new Class1();
int a=1;
c1.Test(a);
}
compile error:
Error 1 The best overloaded method match for 'ConsoleApplication1.func1.Class1.test(out int)' has some invalid arguments