Ejemplo n.º 1
0
Archivo: TestBase.cs Proyecto: ifzz/FDK
        static void Cleanup(DataClient client)
        {
            if (client == null)
                return;

            if (client.IsStarted)
                client.Stop();

            client.Dispose();
        }