CSJ2K.Util.WriteableBitmapImageSource.isOrigSigned C# (CSharp) 메소드

isOrigSigned() 공개 메소드

public isOrigSigned ( int c ) : bool
c int
리턴 bool
        public override bool isOrigSigned(int c)
        {
            if (c < 0 || c >= this.nc)
            {
                throw new ArgumentOutOfRangeException("c");
            }

            return false;
        }