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