Coding Gem #1.4: Parsing CSV Data as Objects in C#

Поделиться
HTML-код
  • Опубликовано: 15 янв 2025

Комментарии • 14

  • @kiegetthipszter
    @kiegetthipszter 4 года назад +1

    This was a good way to start working on my school project, thank you!

  • @HytexX
    @HytexX 4 года назад +3

    Great tutorial. This helped me a lot in my project, thank you.

  • @kristhomas8295
    @kristhomas8295 4 года назад

    I'm looking at ways I can refactor some file parsing code at work, and this helped tremendously.

  • @擀面皮和麻辣烫
    @擀面皮和麻辣烫 3 года назад +2

    Hi why my console.writeline only print out the namespace plus class name?

    • @mateuszmakowski9974
      @mateuszmakowski9974 3 года назад

      got the same problem, did you solve it ?

    • @MrDaroay
      @MrDaroay 3 года назад

      same here, any advice?

    • @MrDaroay
      @MrDaroay 3 года назад

      found it, gotta use override to string: stackoverflow.com/questions/33816246/class-list-keeps-printing-out-as-class-name-in-console

    • @mateuszmakowski9974
      @mateuszmakowski9974 3 года назад +1

      @@MrDaroay thanks ! I did the same :) have a nice day

    • @ParametricCamp
      @ParametricCamp  3 года назад

      You can override the ToString() method and print whatever you want: ruclips.net/video/tNvXUw-_FMc/видео.html

  • @noobinprogess9880
    @noobinprogess9880 4 года назад

    That was really helpful!!!
    Thanks a lot.

  • @noOne-fe4ni
    @noOne-fe4ni 2 года назад

    How can we make this code generic? Like a file about which we have no information, how to read that?

  • @techno_shaman
    @techno_shaman 3 года назад

    How do I know filter by Firstname= John. Or filter by John with grade 90, and save to file with header? Filtering the object would be a great follow up video. Thanks again.

  • @ak_8.8.8
    @ak_8.8.8 3 года назад

    What will be the code if I only want to sort FirstName & LastName from all other data in new lines and exclude everything else in output?
    In my case I also have uncommon data in between.