Hi! I have a file like so:
Keyword1
Keyword2
keyword3
Header Fields:
First Name
Last Name
Age
my question is that can i use linq to help parse this file starting below Header Fields? here is my code to get the line
string[] lines = File.ReadAllLines(@"C:\MyTextFile.txt"); this is giving all the lines in the text file. I tried to put a dot after this:File.ReadAllLines(@"C:\MyTextFile.txt"). and saw that we can do File.ReadAllLines( Go to the complete details ...