Rádio Biss player

Mostrando postagens com marcador Hello World. Mostrar todas as postagens
Mostrando postagens com marcador Hello World. Mostrar todas as postagens

segunda-feira, 26 de setembro de 2011

Fazendo um Hello World q fala!!!

Hummm, parece um pouco com tédio... 
E é mesmo...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Speech.Synthesis;
namespace HelloWorldOutLoud1
{
    class Program
    {
        static void Main(string[] args)
        {
            using (SpeechSynthesizer synth = new System.Speech.Synthesis.SpeechSynthesizer())
            {
                synth.Speak("Hello, World!");
                synth.Speak("Ivana, you are so cool!!");               
                synth.Speak("Biss Lee, Ruleez!!");
            }
        }
    }
}