如何定义以空数组作为默认值的可选数组的函数?
public void DoSomething(int index, ushort[] array = new ushort[] {}, bool thirdParam = true)
“array”的默认参数值必须是编译时常量。