Example #1
0
        static async Task Main(string[] args)
        {
            var exe = new Test101(1);
            var res = exe.Sum(exe, 2);

            Console.ReadKey();
        }
Example #2
0
 public int Sum(Test101 obj, int newValue)
 {
     InternalSum(newValue);
     return(obj._value);
 }