SDKDocGenerator.Writers.ConstructorWriter.GetTitle C# (CSharp) Метод

GetTitle() защищенный Метод

protected GetTitle ( ) : string
Результат string
        protected override string GetTitle()
        {
            var par = FormatParameters(this._constructorInfo.GetParameters());
            if (string.IsNullOrEmpty(par))
                return string.Format("{0} {1}", this._constructorInfo.DeclaringType.Name, GetMemberType());

            return string.Format("{0} {1} ({2})", this._constructorInfo.DeclaringType.GetDisplayName(false), 
                                                  GetMemberType(),
                                                  FormatParameters(this._constructorInfo.GetParameters()));
        }