Exemple #1
0
 public static void Initz(Network network = null, GetClient client = null)
 {
     if (network == null)
         net = new Network();
     else
         net = network;
     if (client == null)
         NClient = TcpClientm.Get;
     else
         NClient = client;
     net.Initialize();
 }
 public Client(Network.TcpClientm Net)
     : base(Net)
 {
     this.Net = Net;
 }