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