repo.or.cz
/
LanSpider.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remodef form, added state class to save and load previous execution state.
[LanSpider.git]
/
LanSpider
/
Program.cs
blob
1a70fef41d8520567059acb5a485132303bd2077
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
using
System
.
Linq
;
4
using
System
.
Windows
.
Forms
;
5
6
namespace
LanSpider
7
{
8
static class
Program
9
{
10
/// <summary>
11
/// The main entry point for the application.
12
/// </summary>
13
[
STAThread
]
14
static void
Main
()
15
{
16
LanSpider spider
=
new
LanSpider
( );
17
spider
.
StartIndexing
( );
18
}
19
}
20
}