C# File.ReadAllLines not breaking on line feeds
- by David Dickerson
Hello,
I have an application that I am building that needs to modify a configuration file.
My problem is that I am not able to read the file in line by line. I keep geeting the the entire file as a single string.
string ConfigTemplate = AEBuildsSPFolderName + "\Template_BuildReleaseScript.Config";
string[] fileSourceLines =…