using System;
namespace CodeRushSetup {
public class Settings {
public static void Save(string allCommands) {
string[] eol = { "\r\n" };
allCommands.Split(eol, StringSplitOptions.RemoveEmptyEntries);
}
}
}
Try it on eol variable: