C# Class BetterExplorer.SaveTabs

ファイルを表示 Open project: Gainedge/BetterExplorer Class Usage Examples

Public Methods

Method Description
CreateFromString ( string values ) : List

Creates a new SavedTabsList and adds each item in values after splitting it on |

LoadTabList ( string file ) : List

Loads a list of tabs from a file

SaveTabList ( List locs, string file ) : void

Saves the list to a file

Method Details

CreateFromString() public static method

Creates a new SavedTabsList and adds each item in values after splitting it on |
public static CreateFromString ( string values ) : List
values string The items you want added to the list which will be split on |
return List

LoadTabList() public static method

Loads a list of tabs from a file
public static LoadTabList ( string file ) : List
file string The full name of the file you want to load from
return List

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