string line = textBox1.Text.ToString();
string[] words = line.Split();
foreach (string word in words)
{
if (word.Contains("ඉ"))
{
SoundPlayer sndplayr = new SoundPlayer(WindowsFormsApplication1.Properties.Resources._a);
sndplayr.Play();
}
if (word.Contains("අ"))
{
SoundPlayer sndplayr = new SoundPlayer(WindowsFormsApplication1.Properties.Resources.la);
sndplayr.Play();
}
}
}
}
私はこれを使用しましたが、テキストボックスの最後の文字の音声しか再生しません。他の文字も再生したいです。それで、なにかお手伝いできますか。私を助けてください............