TechTalk.SpecFlow.ErrorHandling.ErrorProvider.GetMethodText C# (CSharp) Method

GetMethodText() public method

public GetMethodText ( IBindingMethod method ) : string
method IBindingMethod
return 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()));
        }