
Public Member Functions | |
| SearchPathList () | |
| Constructs a SearchPathList object. No default paths are added (You might want to consider using SearchPathList(".") instead to include the current directory.). | |
| SearchPathList (params string[] array) | |
| Constructs a SearchPathList object, and adds all the paths specified to the list of paths to search. | |
| override string | ToString () |
| Provides debugging information. | |
| void | Add (string item) |
| Adds a search path to the list. | |
| void | Clear () |
| Clears all search paths from the list. | |
| bool | Contains (string item) |
| Checks to see if the given path is already in the list. | |
| void | CopyTo (string[] array, int arrayIndex) |
| Copies the list of paths to an array. | |
| bool | Remove (string item) |
| Removes an item from the search path list. | |
| IEnumerator< string > | GetEnumerator () |
| Gets an IEnumerator<string> object for iterating through the search paths. | |
Properties | |
| int | Count [get] |
| Gets how many search paths are listed here. | |
| string | this [int index] [get, set] |
| Returns a search path at a given index. | |
| AgateLib.Utility.SearchPathList.SearchPathList | ( | ) |
Constructs a SearchPathList object. No default paths are added (You might want to consider using SearchPathList(".") instead to include the current directory.).
| AgateLib.Utility.SearchPathList.SearchPathList | ( | params string[] | array | ) |
Constructs a SearchPathList object, and adds all the paths specified to the list of paths to search.
| array | A comma delimited list of strings. |
| void AgateLib.Utility.SearchPathList.Add | ( | string | item | ) |
Adds a search path to the list.
| item |
| void AgateLib.Utility.SearchPathList.Clear | ( | ) |
Clears all search paths from the list.
| bool AgateLib.Utility.SearchPathList.Contains | ( | string | item | ) |
Checks to see if the given path is already in the list.
| item |
| void AgateLib.Utility.SearchPathList.CopyTo | ( | string[] | array, | |
| int | arrayIndex | |||
| ) |
Copies the list of paths to an array.
| array | ||
| arrayIndex |
| IEnumerator<string> AgateLib.Utility.SearchPathList.GetEnumerator | ( | ) |
Gets an IEnumerator<string> object for iterating through the search paths.
| bool AgateLib.Utility.SearchPathList.Remove | ( | string | item | ) |
Removes an item from the search path list.
| item |
| override string AgateLib.Utility.SearchPathList.ToString | ( | ) |
Provides debugging information.
int AgateLib.Utility.SearchPathList.Count [get] |
Gets how many search paths are listed here.
string AgateLib.Utility.SearchPathList.this[int index] [get, set] |
Returns a search path at a given index.
| index |
|
AgateLib Awesome Game and Tool Engine Library |
|