Exemplo n.º 1
0
 void IDisposable.Dispose()
 {
     textToSpeech?.Stop();
     textToSpeech?.Dispose();
     textToSpeech = null;
     initialized  = false;
 }
Exemplo n.º 2
0
 void IDisposable.Dispose()
 {
     if (textToSpeech != null)
     {
         textToSpeech.Stop();
         textToSpeech.Dispose();
         textToSpeech = null;
     }
 }
Exemplo n.º 3
0
 void IDisposable.Dispose()
 {
     textToSpeech?.Stop();
     textToSpeech?.Dispose();
     textToSpeech = null;
 }