Compiler Error CS1103

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
} 

See Also

Reference

Extension Methods (C# Programming Guide)

unsafe (C# Reference)