Skip to content

Instantly share code, notes, and snippets.

View codingonHP's full-sized avatar
🎯
Focusing

Hello World codingonHP

🎯
Focusing
  • India
View GitHub Profile
public bool ValidateCustomer(IValidateCustomer customer)
{
//This method does not retun void and it does not take two ints
//So this MyDelegate cannot point to it.
}
public void DoSomething(int a, int b)
{
//do something please
}
public void Apple(int a, int b)
{
//This method also takes two int and returns void
}