Recurity.Swf.Pix15.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.ToString() );
            sb.AppendFormat(" Red:{0:d} Green:{1:d} Blue{2:d} ", this._Red, this,_Green, this._Blue);
            return sb.ToString();
        }