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 name is only allowed at position.
Example
The following sample generates CS8125:
// CS8125.cs (2,15)
public class C
{
public void Method()
{
var tuple3 = (Item2: 2, Item1: 1);
}
}
To correct this error
If tuple element names Item1
, Item2
, etc. are used, ensuring the correct order corrects this error:
public void Method()
{
var tuple3 = (Item1: 2, Item2: 1);
}
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.