Compiler Error CS8125
Tuple element name is only allowed at position.
The following sample generates CS8125:
C#
// CS8125.cs (2,15)
public class C
{
public void Method()
{
var tuple3 = (Item2: 2, Item1: 1);
}
}
If tuple element names Item1
, Item2
, etc. are used, ensuring the correct order corrects this error:
C#
public void Method()
{
var tuple3 = (Item1: 2, Item2: 1);
}
Bekerjasama dengan kami di GitHub
Sumber untuk kandungan ini boleh didapati di GitHub, di mana anda juga boleh mencipta dan menyemak isu dan menarik permintaan. Untuk maklumat lanjut, lihat panduan penyumbang kami.
.NET maklum balas
.NET ialah projek sumber terbuka. Pilih pautan untuk memberikan maklum balas: