更新:2007 年 11 月

错误消息

不能定义仅在 ref 和 out 上有差别的重载方法。

不允许使用仅在参数的 refout 用法上有差异的方法。

下面的示例生成 CS0663:

 复制代码
// CS0663.cs
class TestClass
{
   public static void Main()
   {
   }

   public void Test(ref int i)
   {
   }

   public void Test(out int i)   // CS0663
   {
   }
}