Recurity.Swf.TagHandler.PlaceObject.ToString C# (CSharp) Method

ToString() public method

Converts the value of this instance to a System.String.
public ToString ( ) : string
return string
        public override string ToString()
        {
            StringBuilder sb = new StringBuilder();
            sb.Append(this._tag.TagType.ToString());
            sb.AppendFormat("Character ID: {0}, Depth: {1}", this._CharacterID, this._Depth);
            return sb.ToString();
        }