11 lines
198 B
C#
11 lines
198 B
C#
// See https://aka.ms/new-console-template for more information
|
|
using ClientTest;
|
|
|
|
Console.WriteLine("Hello, World!");
|
|
Client client = new Client();
|
|
|
|
while (true)
|
|
{
|
|
await Task.Delay(1000);
|
|
}
|