Exemplo n.º 1
0
 /// <summary>
 /// Used to re-throw any exception if there was one, for non void results this would return an actual value (Result&lt;T&gt;)
 /// </summary>
 public void GetResult()
 {
     if (task == null)
     {
         return;
     }
     task.GetResult();
 }
Exemplo n.º 2
0
 public void GetResult()
 {
     if (t == null)
     {
         return;
     }
     t.GetResult();
 }