I found it is cool if a software
This is a sample code in Visual Basic .NET
Make sure .NET Framework 3.5
Add System.Speech as reference in your project.
Code Snippet:
Imports System.Speech.Synthesis
Module Module1
Dim tts As New SpeechSynthesizer
Public Sub Main(ByVal arg() As String)
If Not arg is Nothing Then
For Each t As String In arg
tts.SpeakAsync(t)
Next
End If
End Sub
End Module