Example #1
0
 public void CustomSum(C1Sum method)
 {
     method.result = method.a + method.b;
 }
Example #2
0
File: C1.cs Project: whesius/allors
 public void TestsSum(C1Sum method)
 {
     method.result = method.a + method.b;
 }
Example #3
0
 public void CustomSum(C1Sum method) => method.Result = method.A + method.B;