在C#中定义if语句的if语句

时间:2018-05-19 11:45:06

标签: c# arrays if-statement properties

public class hamid
{
    private int[] arr = new int[10];
    public int[] Arr 
    { 
        get => arr; 
        set 
        { 
            if (value < 0) 
                Environment.Exit(1); 
            else arr = value; 
        } 
    } // If in error.
}

我想要一个if声明。例如if (values < 0) 但是我有一个错误,请帮助我。

1 个答案:

答案 0 :(得分:0)

value是一个整数数组,它不能为零。数组中的任何元素都可以为零。如果您要确定数组是否为null,则可以将检查更改为:

if (value == null) 
{
     Environment.Exit(1); 
}