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.
Tuple element names must be unique.
Example
The following sample generates CS8127:
// CS8127.cs (7,0)
internal struct NewStruct
{
public int a;
public int b;
public static implicit operator (int a, int a)(NewStruct value)
{
return (value.a, value.b);
}
}
To correct this error
Ensuring the names of elements within a tuple declaration are unique corrects this error:
public static implicit operator (int a, int b)(NewStruct value)
{
return (value.a, value.b);
}
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.