ImageMagick.PerceptualHash.ToString C# (CSharp) Method

ToString() public method

Returns a string representation of this hash.
public ToString ( ) : string
return string
    public override string ToString()
    {
      return
        _Channels[PixelChannel.Red].ToString() +
        _Channels[PixelChannel.Green].ToString() +
        _Channels[PixelChannel.Blue].ToString();
    }
  }