Recurity.Swf.LineStyleArray.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("");

            if (this._lineStyleCount == 0xFF)
            {
                sb.AppendFormat(" Number of LINETSYLES(counted) : {0:d}, Number of LINETSYLES(parsed) : {1:d} ", this.Count, this._lineStyleCountExtended);
            }
            else
            {
                sb.AppendFormat(" Number of LINETSYLES(counted) : {0:d}, Number of LINETSYLES(parsed) : {1:d} ", this.Count, this._lineStyleCount);
            }

            return sb.ToString();
        }