Delegate declaration in C#
Hello friends,
I want to know that the correct way to declare a delegate for calling the function say() defined in the sample class given below? Please give me an explanation also?
class student
{
public int say(int i, Single j)
{
}
}