Hi...
I would like to know that what is function signature in oops and how to implement it in c#.
What is function signature in oops.
Ask by James Smith
Updated 20 May 2011
Function signature basically contains types of parameters, number of parameters and sequence of parameters.
Return type is not part of function signature.
We use concept of function signature when we use method overloading.