예제 #1
0
        public async Task <string> message(z_message.e_type e, string text, params string[] options)
        {
            z_message y = new z_message()
            {
                e      = e,
                option = options,
                text   = text,
            };

            return(await dialog(y));
        }
예제 #2
0
파일: g_page.cs 프로젝트: rulingcode/caaa
        public async Task <string> message(z_message.e_type e, string text, params string[] options)
        {
            z_message y = new z_message()
            {
                e      = e,
                option = options,
                text   = text,
            };
            var o = await y.run(this);

            return(o.result);
        }