Dicom.Imaging.LUT.OutputLUT.this C# (CSharp) Method

this() public method

public this ( int value ) : int
value int
return int
        public int this[int value]
        {
            get {
                //if (value < 0)
                //    return _table[0];
                //if (value > 255)
                //    return _table[255];
                return _table[value];
            }
        }