У меня есть приложение, которое я создаю и которое нуждается в изменении файла конфигурации.
Моя проблема в том, что я не могу прочитать файл построчно. Я сохраняю весь файл как одну строку.
string ConfigTemplate = AEBuildsSPFolderName + "\\Template_BuildReleaseScript.Config";
string[] fileSourceLines = File.ReadAllLines(ConfigTemplate, Encoding.Default);
//Returns the entire file contents into the first array element.
using (StreamReader reader = new StreamReader(ConfigTemplate))
{
string line;
while ((line = reader.ReadLine()) != null)
//Returns the entire file contents into the first line read.
Есть идеи, что я делаю не так?
Спасибо
1010 * Дэвид *