AsyncCallback.cs 208 B

12345678910111213
  1. //
  2. // System/AsyncCallback.cs
  3. //
  4. // Author:
  5. // Paolo Molaro ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System {
  10. public delegate void AsyncCallback (IAsyncResult ar);
  11. }