first commit

This commit is contained in:
Jose Caban
2025-06-07 11:38:03 -04:00
commit e0316ca3ff
79 changed files with 3155 additions and 0 deletions

19
TestDataServer/Program.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
namespace TestDataServer
{
class Program
{
static void Main(string[] args)
{
TestDataServer server = new TestDataServer();
server.StartListening();
//server.StopListening();
server.WaitUntilThreadsClose();
}
}
}