What does the signature of the method in C# mean?
A function consists of function name, parameter number, parameter type and return value, and the return value is what remains after the function name is removed (return value, parameters, calling method, etc.). ). When the function is overloaded, the difference of function signature (that is, the number and type of parameters are different) is used to distinguish which method the caller calls.