Tuesday, May 12, 2009

Delegate in c#

// Declare the Delegate
public delegate void delegateName();

// Create the object of Delegate
delegateName dn= new Uploaddelegate(callme);


public static void callme
()
{
// code to do here
}

No comments:

Post a Comment