say() публичный Метод

Ooverload method for Say that allows an arrat of prompts to be used.
public say ( Array says ) : void
says System.Array The prompts to say or send to the caller.
Результат void
Пример #1
0
        public void Page_Load(object sender, EventArgs args)
        {
            // Create a new instance of the Tropo object.
            Tropo tropo = new Tropo();

            // Call the say method of the Tropo object and give it a prompt to say.
            tropo.say("Hello World!");

            // Render the JSON for Tropo to consume.
            Response.Write(TropoJSON.render(tropo));
        }