AForge.Imaging.RGB.RGB C# (CSharp) Method

RGB() public method

Initializes a new instance of the RGB class.
public RGB ( ) : System
return System
        public RGB( )
        {
            Red   = 0;
            Green = 0;
            Blue  = 0;
            Alpha = 255;
        }

Same methods

RGB::RGB ( System color ) : System
RGB::RGB ( byte red, byte green, byte blue ) : System
RGB::RGB ( byte red, byte green, byte blue, byte alpha ) : System
RGB