コード例 #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);
        }