mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-09 06:30:54 +00:00
Include C# codegen in flatc and .NET FlatBuffer access via the FlatBufferBuilder class Tested: on Windows. Change-Id: If5228a8df60a10e0751b245c6c64530264ea2d8a
13 lines
223 B
C#
13 lines
223 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace FlatBuffers
|
|
{
|
|
public static class FlatBufferConstants
|
|
{
|
|
public const int FileIdentifierLength = 4;
|
|
}
|
|
}
|