Code:
Public Class FireWall
{
Private String Name;
Private Thread ActiveThread;
Public Void Constructor()
{
this.Name = "";
}
Public Property Name
{
get
{
return this.Name
}
set
{
this.Name = value
}
}
Public Property Thread
{
get
{
return this.ActiveThread;
}
set
{
this.ActiveThread; = value
}
}
}
FireWall f = new FireWall();
Thread t = new Thread();
f.Thread = t
f.Thread.Start();
Thread in firewall en rest kun je zelf fixen