IOFactory.cs 197 B

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