Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0543.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 741277eabc543f41f2f31d1877c2d59f09caa52b (plain)
1
2
3
4
5
6
7
8
9
10
// CS0543: The enumerator value `Blah.MyEnum.Bar' is outside the range of enumerator underlying type `byte'
// Line : 8

public class Blah
{
	public enum MyEnum : byte {
		Foo = 255,
		Bar
	}
}