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

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

            client.Dispose();
        }