@@ -4,8 +4,8 @@ The multithreading .NET library that provides opportunity to fast find files or
4
4
5
5
## INSTALLATION
6
6
1 . Download archive with last [ release] ( https://github.com/VladPVS/FastSearchLibrary/releases " Last release ")
7
- 2 . Extract content from some directoty .
8
- 3 . Copy files .dll and .xml files in directory of your project.
7
+ 2 . Extract content from some directory .
8
+ 3 . Copy .dll and .xml files in directory of your project.
9
9
4 . Add library to your project: Solution Explorer -> Reference -> item AddReference in contex menu -> Browse
10
10
5 . Add appropriate namespace: ` using FastSearchLibrary; `
11
11
6 . Set target .NET Framework version as 4.5.1 or higher: Project -> <YourProjectName > Properties -> Target framework
@@ -23,7 +23,7 @@ Next classes provide search functionality:
23
23
* Classes ` FilesSearcher ` and ` DirectorySearcher ` contain static method that allow execute search by different criteria.
24
24
These methods return result only when they fully complete execution.
25
25
* Methods that have "Fast" ending divide task on several
26
- subtasks that executes simultaneously in thread pool.
26
+ subtasks that execute simultaneously in thread pool.
27
27
* Methods that have "Async" ending return Task and don't block the called thread.
28
28
* First group of methods accepts 2 parameters:
29
29
* ` string folder ` - start search directory
@@ -78,7 +78,7 @@ Next classes provide search functionality:
78
78
` StopSearch() ` method.
79
79
To stop search process possibility one have to use constructor that accept CancellationTokenSource parameter.
80
80
81
- Example:
81
+ Example:
82
82
83
83
class Searcher
84
84
{
@@ -196,6 +196,6 @@ Next classes provide search functionality:
196
196
197
197
### SPEED OF WORK
198
198
It depends on your computer performance, current loading, but usually ` Fast ` methods and instance method ` StartSearch() ` are
199
- performed at least in 2 times faster then simple one-thread recursive algorithm if you use modern multicore processor of course.
199
+ performed at least in 2 times faster than simple one-thread recursive algorithm if you use modern multicore processor of course.
200
200
201
201
0 commit comments