コード例 #1
0
        public async void GetRecoverNum(string Country, Label RecoverLbl)
        {
            var recoverNum = await CAPI.ReturnRecovered(Country);

            RecoverLbl.Text = Convert.ToString(recoverNum);
        }
コード例 #2
0
        public async Task <int> Recovered(string country)
        {
            var a = await CAPI.ReturnRecovered(country);

            return(a);
        }