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