IOFactory.cs 186 B

1234567
  1. namespace Universal.IO;
  2. public class IOFactory
  3. {
  4. public static ITcpServer GetTcpServer() => new IOTcpServer();
  5. public static ITcpClient GetTcpClient() => new IOTcpClient();
  6. }