MobiEPUB.PRC.Header.Position C# (CSharp) Method

Position() public method

public Position ( int pos ) : void
pos int
return void
        public void Position(int pos)
        {
            if (pos < 0 || pos > m_Header.Length)
                throw new Exception("Position out of range: Requested " + pos.ToString() + " Max " + m_Header.Length.ToString());
            m_CurrPos = pos;
        }