Files
flatbuffers/tests/MyGame/Example/Color.cs
Marc Butler 93f74c0363 Generate FlagsAttribute for Csharp (#5370)
For schema enums with the bit_flags attribute, generate the
corresponding System.FlagsAttribute in generated Csharp code.
2019-05-30 15:57:41 -07:00

18 lines
232 B
C#

// <auto-generated>
// automatically generated by the FlatBuffers compiler, do not modify
// </auto-generated>
namespace MyGame.Example
{
[System.FlagsAttribute]
public enum Color : byte
{
Red = 1,
Green = 2,
Blue = 8,
};
}