I got the following error while I try to create a file using c# .Net. It is happening because that file is being used by another process only one to access the file.
You should close the connection when you are using an object. The using statement simplifies the code that you have to write to create and clean the object.
I got error for the following code,
protected void btnSpeak_Click(object sender, EventArgs e)
{
SpeechAudioFormatInfo info = new SpeechAudioFormatInfo(6, AudioBitsPerSample.Sixteen, AudioChannel.Mono);
SpeechSynthesizer ss = new SpeechSynthesizer();
ss.Volume = 100;
ss.SelectVoiceByHints(VoiceGender.Female,VoiceAge.Adult);
ss.SetOutputToWaveFile(@"D:\MyAudioFile.wav");
ss.Speak(txtContent.Text);
}
Exception message:
Solution:
You can write code like this,
using (var ss = new SpeechSynthesizer())
{
ss.Volume = 100;
ss.SelectVoiceByHints(VoiceGender.Female,VoiceAge.Adult);
ss.SetOutputToWaveFile(@"D:\MyAudioFile.wav");
ss.Speak(txtContent.Text);
}
Post your comments / questions
Recent Article
- How to use if else statement in c++?
- How to use godaddy domain name with another godaddy hosting account?
- Restore of database 'DATABASE' failed. (Microsoft.SqlServer.Management.RelationalEngineTasks)
- How to programmatically modifying the AppSetting value in web.config using c#?
- TypeError [ERR_INVALID_CALLBACK]: Callback must be a function. Received undefined
- How to calculate the age from jQuery ui datepicker using c#?
- How to calculate days difference between two dates in c#?
- Changing date format in jQuery ui datepicker
Related Article