运算符“!”不能应用于Xamarin中“方法组”类型的操作数

时间:2018-07-13 03:13:13

标签: c# xaml xamarin xamarin.forms xamarin.ios

我正在尝试检查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
            {}
         }

1 个答案:

答案 0 :(得分:1)

基本代码没什么问题

    if (CrossConnectivity.Current.IsConnected == false) 
    {
        return false;
    }