예제 #1
0
        private static async Task <Result> JoinA(AsyncResultBase a, Result b)
        {
            var aResult = await a.GetTaskResult();

            return(Result.Join(aResult, b));
        }
예제 #2
0
 public static AsyncResult Join(AsyncResultBase a, Result b) => JoinA(a, b);