編譯器錯誤 CS1101
參數修飾詞 'ref' 不可與 'this' 一起使用。
當 this
關鍵字修改靜態方法的第一個參數時,它會通知編譯器,該方法是一個擴充方法。 在 C# 7.1 版及更早的版本中,擴充方法的第一個參數上不需要也不允許其他修飾元。 C# 7.2 版開始允許 ref
擴充方法,請查看擴充方法以取得詳細資訊。
下列範例會產生 CS1101:
// cs1101.cs
// Compile with: /target:library
public static class Extensions
{
public static void Test(ref this int i) {} // CS1101
}