ReadToEnd() публичный Метод

Reads the CSV stream from the current position to the end of the stream.
/// The instance has been disposed of. ///
public ReadToEnd ( ) : void
Результат void
Пример #1
0
        public void ApplySort(PropertyDescriptor property, System.ComponentModel.ListSortDirection direction)
        {
            _sort      = (CsvPropertyDescriptor)property;
            _direction = direction;

            _csv.ReadToEnd();

            _csv.Records.Sort(new CsvRecordComparer(_sort.Index, _direction));
        }