閱讀英文

共用方式為


編譯器錯誤 CS0622

只能使用陣列初始設定式運算式指派給陣列類型 請嘗試改用新的運算式。

非陣列的宣告中使用了適合初始化陣列的語法。

範例

下列範例會產生 CS0622:

// CS0622.cs  
using System;  
  
public class Test  
{  
    public static void Main ()  
    {  
        Test t = { new Test() };   // CS0622  
        // Try the following instead:  
        // Test[] t = { new Test() };  
    }  
}