Beispiel #1
0
 ///
 /// <summary>Begins the call to sync.</summary>
 ///
 public int?my_sync(
     int?count
     )
 {
     return(count > 0 ? server.sync(count - 1) + 1 : 0);
 }
Beispiel #2
0
 public void sync1()
 {
     Assert.AreEqual(0, server.sync(0));
 }