public void async_free() { for (int i = 0; i < 10; i++) { Assert.AreEqual(i, server.async_free(i)); } }
/// /// <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); }