Naming conventions
This commit is contained in:
@@ -12,7 +12,7 @@ public class Program
|
|||||||
public static void Main ()
|
public static void Main ()
|
||||||
{
|
{
|
||||||
Program program = new Program();
|
Program program = new Program();
|
||||||
program.startThreads();
|
program.StartThreads();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Program ()
|
public Program ()
|
||||||
@@ -23,7 +23,7 @@ public class Program
|
|||||||
Send = new Sender (client);
|
Send = new Sender (client);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void startThreads ()
|
public void StartThreads ()
|
||||||
{
|
{
|
||||||
ReceiverThread = new Thread(new ThreadStart(this.doReceive));
|
ReceiverThread = new Thread(new ThreadStart(this.doReceive));
|
||||||
ReceiverThread.Start ();
|
ReceiverThread.Start ();
|
||||||
|
|||||||
Reference in New Issue
Block a user