Beispiel #1
0
 public void async_free()
 {
     for (int i = 0; i < 10; i++)
     {
         Assert.AreEqual(i, server.async_free(i));
     }
 }
Beispiel #2
0
 ///
 /// <summary>Begins the call to async_free.</summary>
 ///
 public int?my_async_free(
     int?count
     )
 {
     return(count > 0 ? server.async_free(count - 1) + 1 : 0);
 }