using System; using System.Collections.Generic; using AssistantSeika; namespace sampleSpeak { class Program { static void Main(string[] args) { var Client = new WCFClient(); Dictionary effetcs = new Dictionary() { { "volume", 1.0m }, { "speed", 0.9m }, { "pitch" , 1.3m } }; Dictionary emotions = new Dictionary() { {"喜び", 0.60m } }; string s = "あー嬉しいなー"; string[] t = new string[] { "あー嬉しいなー", "ホント嬉しいなー" }; Client.Talk(5201, s, effetcs, emotions); // Client.Talk(2000, s, @"F:\AssistantSeika\sandbox\2000.wav", effetcs, emotions); Client.Talk(5201, t, effetcs, emotions); // Client.Talk(2000, t, @"F:\AssistantSeika\sandbox\2000.wav", effetcs, emotions); } } }