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()));
        }