Mine
public text v1 · immutable//
// KONSOLDA SESLİ HELLO WORLD UYGULAMASI
//
//Bu program 30.01.2012 Tarihinde
//Hüseyin Çakanlı Tarafından
//Örnek Olarak Yazıldı.
//Visual Strudio 2010 tarafından test edilmiştir.
using System;
using System.Speech.Synthesis;
namespace HelloWorldOutLoud1
{
class Program
{
static void Main(string[] args)
{
using (SpeechSynthesizer synth = new System.Speech.Synthesis.SpeechSynthesizer())
{
Console.WriteLine("Hello World");
synth.Speak("Hello World");
}
}
}
}