Exemple #1
0
 IFreeBusy CombineFreeBusy(IFreeBusy main, IFreeBusy current)
 {
     if (main != null)
     {
         main.MergeWith(current);
     }
     return(current);
 }
 private IFreeBusy CombineFreeBusy(IFreeBusy main, IFreeBusy current)
 {
     main?.MergeWith(current);
     return(current);
 }