TechTalk.SpecFlow.ErrorHandling.ErrorProvider.GetMethodText C# (CSharp) Метод

GetMethodText() публичный Метод

public GetMethodText ( IBindingMethod method ) : string
method IBindingMethod
Результат string
        public string GetMethodText(IBindingMethod method)
        {
            return string.Format("{0}.{1}({2})", method.Type.Name, method.Name,
                string.Join(", ", method.Parameters.Select(p => p.Type.Name).ToArray()));
        }