Exemplo n.º 1
0
 public void CustomSum(C1Sum method)
 {
     method.result = method.a + method.b;
 }
Exemplo n.º 2
0
Arquivo: C1.cs Projeto: whesius/allors
 public void TestsSum(C1Sum method)
 {
     method.result = method.a + method.b;
 }
Exemplo n.º 3
0
 public void CustomSum(C1Sum method) => method.Result = method.A + method.B;