編譯器錯誤 CS1103
更新:2007 年 11 月
錯誤訊息
擴充方法的第一個參數不能是型別 'type'。
擴充方法的第一個參數不能是指標型別 (Pointer Type)。
範例
下列範例會產生 CS1103:
// cs1103.cs
public static class Extensions
{
public unsafe static char* Test(this char* charP) { return charP; } // CS1103
}
更新:2007 年 11 月
擴充方法的第一個參數不能是型別 'type'。
擴充方法的第一個參數不能是指標型別 (Pointer Type)。
下列範例會產生 CS1103:
// cs1103.cs
public static class Extensions
{
public unsafe static char* Test(this char* charP) { return charP; } // CS1103
}