| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MQTTClientTest
- {
- class Program
- {
- static void Main(string[] args)
- {
- /*MultiClients ms = new MultiClients();
- ms.start(1);*/
- M2MqttClient client = new M2MqttClient();
- client.start();
- System.Console.WriteLine("Press any key to stop");
- System.Console.ReadKey();
- //ms.stop();
- }
- }
- }
|