BetterExplorer.SaveTabs.SaveTabList C# (CSharp) Method

SaveTabList() public static method

Saves the list to a file
public static SaveTabList ( List locs, string file ) : void
locs List The list of tabs
file string The file you want to save to
return void
		public static void SaveTabList(List<string> locs, string file) {
			using (var sw = new StreamWriter(file, false)) {
				sw.WriteLine(string.Join("|", locs));
			}
		}