更新:2007 年 11 月
错误消息
参数只能有一个“modifier name”修饰符。参数修饰符(如 this、ref 和 out)在参数定义中多次出现是错误的。
示例
下面的示例生成 CS1107:
复制代码 | |
---|---|
// cs1107.cs public static class Test { // Extension methods. public static void TestMethod(this this t) {} // CS1107 // Regular Instance Method public void TestMethod(ref ref int i) {} // CS1107 } |