csharp code to read txt file line by line and split

Code Example - csharp code to read txt file line by line and split

                
                        string lines = File.ReadAllText(path);
string [] split_arr = lines.Split(';')//files containt ; seprated values
  foreach(string l in split_arr)
  {
    Console.WriteLine(l);
  }
                    
                
 

csharp read file by line

                        
                                using (var file = new StreamReader(fileName)) {
	string line;
	while((line = file.ReadLine()) != null)  
	{  
		System.Console.WriteLine(line);
	}  
}
                            
                        
 

Related code examples