// This file is auto-generated, don't edit it. Thanks. using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; using Tea; using Tea.Utils; namespace Darabonba.Test { public class Client { public static void Hello() { return ; } public static Dictionary HelloMap() { Dictionary m = new Dictionary(){}; return TeaConverter.merge ( new Dictionary() { {"key", "value"}, {"key-1", "value-1"}, {"key-2", "value-2"}, {"\"\"", "value-3"}, }, m ); } public static List> HelloArrayMap() { return new List> { new Dictionary { {"key", "value"}, } }; } public static void HelloParams(string a, string b) { return ; } public static async Task HelloParamsAsync(string a, string b) { return ; } public static void Main(string[] args) { return ; } } }