Beispiel #1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: KeyValueMerger(DataProvider first, DataProvider other, int keySize, int valueSize) throws java.io.IOException
        internal KeyValueMerger(DataProvider first, DataProvider other, int keySize, int valueSize)
        {
            this._firstAvail = (this._first = first).visit(_firstKey = newBuffer(keySize), _firstValue = newBuffer(valueSize));
            this._otherAvail = (this._other = other).visit(_otherKey = newBuffer(keySize), _otherValue = newBuffer(valueSize));
        }
Beispiel #2
0
 internal StubCollector(int entriesPerPage, params string[] header) : base(entriesPerPage, HeaderFields(header), BigEndianByteArrayBuffer.NewBuffer(0))
 {
 }