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.
Interfaces cannot contain operators
Operators are not permitted in interface definitions.
The following sample generates CS0567:
// CS0567.cs
interface IA
{
int operator +(int aa, int bb); // CS0567
}
class Sample
{
public static void Main()
{
}
}