시스템을 캐스트 또는 변환할 수 없습니다.String to Class 객체 웹 API에서 받은 JSON 문자열을 역직렬화하려고 합니다. try { string r = await App.client.GetUser(); App.Authentication = JsonConvert.DeserializeObject(r); await DisplayAlert("TEST", App.Authentication.ToString(), "OK"); Application.Current.MainPage = new Schedule(); } catch (Exception p) { await DisplayAlert("Getting Authentication failed", p.ToString(), "TEST"); } 단, "Canno..