Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The first parameter of an extension method cannot be of type 'type'.
The first parameter of an extension method cannot be a pointer type.
Example
The following example generates CS1103:
// cs1103.cs
public static class Extensions
{
public unsafe static char* Test(this char* charP) { return charP; } // CS1103
}