mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-18 22:18:57 +00:00
Initial commit of .NET port of FlatBuffers
Include C# codegen in flatc and .NET FlatBuffer access via the FlatBufferBuilder class Tested: on Windows. Change-Id: If5228a8df60a10e0751b245c6c64530264ea2d8a
This commit is contained in:
committed by
Wouter van Oortmerssen
parent
3f85183c88
commit
9a1f7be6fd
16
tests/MyGame/Example/Color.cs
Normal file
16
tests/MyGame/Example/Color.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
// automatically generated, do not modify
|
||||
|
||||
namespace MyGame.Example
|
||||
{
|
||||
|
||||
using FlatBuffers;
|
||||
|
||||
public class Color
|
||||
{
|
||||
public static byte Red = 1;
|
||||
public static byte Green = 2;
|
||||
public static byte Blue = 8;
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user