我正在尝试检查Xamarin.Forms
中的网络连接。但是if condition
给了我一个错误operator '!' cannot be applied to operand of type 'method group'
。
请在下面找到我的代码
private async Task<FaceEmotionDetection>
DetectFaceAndEmotionsAsync(MediaFile inputFile)
{
if (!CrossConnectivity.Current.IsConnected)
{
await App.Current.MainPage.DisplayAlert("Network error", "Please
check your network connection and retry.", "OK");
return null;
}
else
{}
}
答案 0 :(得分:1)
基本代码没什么问题
if (CrossConnectivity.Current.IsConnected == false)
{
return false;
}