默认参数必须是编译时常量/int[] C#

Default Parameter must be a compile-time constant / int[] C#

此方法无法编译并出现错误“Index1 的默认参数必须是编译时常量。我正在传递一个 int[3];为什么会这样?我该如何解决这个问题?

    public void C_Loader(int[] Index1 = new int[3] {4,4,4}, int[] Index2 = new int[3] {8,8,8}, int[] Index3 = new int[3] {10,10,10})

来自 MSDN

"默认值必须是以下之一:

常量表达式;

new ValType() 形式的表达式,其中 ValType 是值类型,例如枚举或结构;

default(ValType) 形式的表达式,其中 ValType 是值类型。

您创建的数组不遵循上述任何规则

试试这个

public void C_Loader(int[] Index1=null, int[] Index2=null , int[] Index3=null)
 {
    if(Index1 ==null) Index1= new int[] {4,4,4};
    if (Index2 == null) Index2 = new int[] { 8, 8, 8 };
    if (Index3 == null) Index3 = new int[] { 10, 10, 10 };


        .... your code
 }