예제 #1
0
        public void Reset()
        {
            _first = true;

            _handle.IfSome(h =>
            {
                _rfcRuntime.MoveToFirstTableRow(h).Map(u => ReadCurrentRow());
            });
        }
예제 #2
0
 public void Reset()
 {
     _handle.IfSome(h => _rfcRuntime.MoveToFirstTableRow(h));
     _first = true;
     ReadCurrentRow();
 }