使用英语阅读

通过


编译器错误 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
}

另请参阅