Imager.sPixel.ToString C# (CSharp) Method

ToString() public method

Returns a System.String that represents this instance.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return (
            string.Format(
              "({0:X8}) Red:{1}, Green:{2}, Blue:{3}, Alpha:{4}",
              this._rgbBytes,
              this.Red,
              this.Green,
              this.Blue,
              this.Alpha
            )
              );
        }