Imager.sPixel.ToString C# (CSharp) Méthode

ToString() public méthode

Returns a System.String that represents this instance.
public ToString ( ) : string
Résultat 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
            )
              );
        }