Set C# Struct/Table visibility to public (#5381) (#5416)

This commit is contained in:
Vladimir Glavnyy 2019-06-25 07:51:04 +07:00 committed by Wouter van Oortmerssen
parent 92e9f33036
commit b7012484f3
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ namespace FlatBuffers
/// <summary>
/// All structs in the generated code derive from this class, and add their own accessors.
/// </summary>
internal struct Struct
public struct Struct
{
public int bb_pos { get; private set; }
public ByteBuffer bb { get; private set; }

View File

@ -22,7 +22,7 @@ namespace FlatBuffers
/// <summary>
/// All tables in the generated code derive from this struct, and add their own accessors.
/// </summary>
internal struct Table
public struct Table
{
public int bb_pos { get; private set; }
public ByteBuffer bb { get; private set; }