What is the Method Signature in the following
int DoSomething(int a, int b);
Return type is a part of signature or not???
DoSomething(int a, int b);
is the method signature,
int is the return type.
int
take a look at this :Signatures and overloading