ScreenToGif.ImageUtil.Decoder.GifColor.GifColor C# (CSharp) Method

GifColor() public method

public GifColor ( byte r, byte g, byte b )
r byte
g byte
b byte
        public GifColor(byte r, byte g, byte b)
        {
            _r = r;
            _g = g;
            _b = b;
        }