11 lines
218 B
C#
11 lines
218 B
C#
namespace DualScreenDemo
|
|
{
|
|
public static class TCPServerManager
|
|
{
|
|
public static void StartServer()
|
|
{
|
|
TCPServer server = new TCPServer();
|
|
server.Start();
|
|
}
|
|
}
|
|
} |