CSJ2K.Util.WriteableBitmapImageSource.getNomRangeBits C# (CSharp) Method

getNomRangeBits() public method

public getNomRangeBits ( int c ) : int
c int
return int
        public override int getNomRangeBits(int c)
        {
            if (c < 0 || c >= this.nc)
            {
                throw new ArgumentOutOfRangeException("c");
            }

            return this.rb;
        }