SDKDocGenerator.Writers.ConstructorWriter.GetMemberName C# (CSharp) 메소드

GetMemberName() 보호된 메소드

protected GetMemberName ( ) : string
리턴 string
        protected override string GetMemberName()
        {
            var par = FormatParameters(this._constructorInfo.GetParameters());
            if (string.IsNullOrEmpty(par))
                return string.Format("{0}", this._constructorInfo.DeclaringType.Name);

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