Method | Description | |
---|---|---|
LoadFileInArrayList ( string filename ) : |
||
LoadFileInDictionary ( string filename ) : bool>.Dictionary |
||
LoadFileInHashtable ( string filename, string splitter ) : |
Load the Contents of a "|" seperated file in a HashTable. The Content[0] = "Key", Content[1] = "Value"
|
|
LoadFileInList ( string filename, bool maintainCase ) : List |
Read a File and Store it into a List.
|
public static LoadFileInArrayList ( string filename ) : |
||
filename | string | |
return |
public static LoadFileInDictionary ( string filename ) : bool>.Dictionary |
||
filename | string | |
return | bool>.Dictionary |
public static LoadFileInHashtable ( string filename, string splitter ) : |
||
filename | string | The input file. |
splitter | string | |
return |
public static LoadFileInList ( string filename, bool maintainCase ) : List |
||
filename | string | The File to be read into a List. |
maintainCase | bool | If True: Maintain the Case of the Words in the File. If False: Convert everything into LowerCase. |
return | List |