-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
51 lines (49 loc) · 1.47 KB
/
Program.cs
File metadata and controls
51 lines (49 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
namespace TcpChatTest2
{
public class TcpChatTest2 : ConsoleController
{
static TcpServerController ctrlServer = new TcpServerController();
static TcpClientController ctrlClient = new TcpClientController();
public static void Main(string[] args)
{
cls();
cwl("App running");
CheckStartup(args);
}
private static void CheckStartup(string[] args)
{
if (args.Length > 0)
{
SelectType(args[0], args);
}
else
{
cwl("server or client");
string memberType = Console.ReadLine() + "";
SelectType(memberType);
}
}
private static void SelectType(string memberType, string[]? args = null)
{
switch (memberType.ToLower())
{
case "server":
ctrlServer.Run();
break;
case "client":
if (args != null && args.Length > 1 && string.IsNullOrEmpty(args[1]) == false)
{
ctrlClient.Run(args[1]);
}
else
{
ctrlClient.Run();
}
break;
default:
cwl("there is no type like " + memberType);
break;
}
}
}
}