Example #1
0
        async void SetStringList(object sender, RoutedEventArgs e)
        {
            bool success = await AtTest.SetStringList(new List <string>() { "first", "second" });

            _tbInfo.Text = success ? "调用成功!" : "调用不成功!";
        }