Chapter 18 Working with C#


Delegate

You can design the following types of C# delegates:

{
   public delegate int ActionOccurred();
}

{
   public class Worker
   {
      public delegate  WorkStarted();
   }
}

 


Copyright (C) 2007. Sybase Inc. All rights reserved.