ITabularFileReader.cs 420 B

12345678910111213141516171819202122
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. namespace InABox.Scripting
  6. {
  7. public interface ITabularFileReader
  8. {
  9. Dictionary<string, int> Columns { get; set; }
  10. bool EndOfData { get; }
  11. bool ReadHeader();
  12. bool SkipLine();
  13. Dictionary<string, object?> ReadLine();
  14. IList<string> ReadLineValues();
  15. }
  16. }