bigloo.input_string_port.input_string_port C# (CSharp) Method

input_string_port() public method

public input_string_port ( byte s, int start )
s byte
start int
        public input_string_port( byte[] s, int start )
            : base("[string]", (s.Length+1) - start)
        {
            int size = s.Length - start;

             for ( int i= 0 ; i < size ; ++i )
            buffer[i] = s[i + start];

             buffer[size] = 0;
             bufpos= bufsiz;
             eof= true;
        }