Files
flatbuffers-bigfoot/tests/optional_scalars/OptionalByte.cs
Derek Bailey ea92a668d8 [C#] Optional Scalars (#6217)
* [C#] Optional Scalars

* Moved scalar optional check to avoid null enum conversion
2020-10-30 13:18:59 -07:00

17 lines
219 B
C#

// <auto-generated>
// automatically generated by the FlatBuffers compiler, do not modify
// </auto-generated>
namespace optional_scalars
{
public enum OptionalByte : sbyte
{
None = 0,
One = 1,
Two = 2,
};
}