Patcher.CecilExtensions.Signature C# (CSharp) Метод

Signature() публичный статический Метод

public static Signature ( this method ) : string
method this
Результат string
        public static string Signature(this MethodReference method)
        {
            return string.Format("{0}({1})", method.Name, string.Join(", ", method.Parameters.Select(p => p.ParameterType)));
        }