What is the Method Signature in the following
int DoSomething(int a, int b);
Return type is a part of signature or not???
The signature does not contain the return type. Neither the parameter names. In your case it would be DoSomething(int, int)
DoSomething(int, int)