Compiler Error CS8139
cannot change tuple element names when overriding inherited member
The following sample generates CS8139:
C#
// CS8139.cs (9,38)
public class Base
{
public virtual (object a, object b) M((object c, object d) x) { return x; }
}
class C : Base
{
public override (object, object) M((object c, object d) y) { return y; }
}
Ensuring the tuple element names in the overriding member match those in the virtual member corrects this error:
C#
class C : Base
{
public override (object a, object b) M((object c, object d) y) { return y; }
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: