All pastes #2108743 Raw Edit

Mine

public text v1 · immutable
#2108743 ·published 2012-02-01 15:13 UTC
rendered paste body
//
//  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");

}

}

}

}