RtfDomParser.RTFToken.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            if (intType == RTFTokenType.Keyword)
            {
                return this.Key + this.Param;
            }
            else if (intType == RTFTokenType.GroupStart)
            {
                return "{";
            }
            else if (intType == RTFTokenType.GroupEnd)
            {
                return "}";
            }
            else if (intType == RTFTokenType.Text)
            {
                return "Text:" + this.Param;
            }
            return intType.ToString() + ":" + this.Key + " " + this.Param;
        }
RTFToken