Recurity.Swf.Pix15.ToString C# (CSharp) 메소드

ToString() 공개 메소드

Converts the value of this instance to a System.String.
public ToString ( ) : string
리턴 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();
        }