Naming conventions

This commit is contained in:
2014-03-27 10:59:14 +01:00
parent 1023627cdd
commit 161bd6c226

View File

@@ -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 ();