HomeCSharpC# Error CS8139 – ‘{0}’: cannot change tuple element names when overriding inherited member ‘{1}’

C# Error CS8139 – ‘{0}’: cannot change tuple element names when overriding inherited member ‘{1}’

C# Error

CS8139 – ‘{0}’: cannot change tuple element names when overriding inherited member ‘{1}’

Reason for the Error & Solution

cannot change tuple element names when overriding inherited member

Example

The following sample generates CS8139:

// 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; }
}

To correct this error

Ensuring the tuple element names in the overriding member match those in the virtual member corrects this error:

class C : Base
{
    public override (object a, object b) M((object c, object d) y) { return y; }
}

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...