My desire is obtain a list of available 'voices' using the imported dotnet SAPI package.
The VB code I am trying to emulate is:
Sub Main()
Dim synth As New SpeechSynthesizer
Dim voices = synth.GetInstalledVoices()
For Each v As InstalledVoice In voices
System.Console.WriteLine(v.VoiceInfo ...