Exemplo n.º 1
0
 public string TestParamObj(DerivedClass obj)
 {
     obj.baseIntField = 111;
     return(obj.TestVirt(Age, Name));
 }
Exemplo n.º 2
0
 public string TestDerivedObj(DerivedClass obj, int a, string b)
 {
     return(obj.TestVirt(a, b));
 }