Compiler Error CS0543
'enumeration' : the enumerator value is too large to fit in its type
A value that was assigned to an element in an enumeration is outside the range of the data type.
The following sample generates CS0543:
C#
// CS0543.cs
namespace x
{
enum I : byte
{a = 255, b, c} // CS0543
public class clx
{
public static int Main()
{
return 0;
}
}
}
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: