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)); }
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); }