Commit b7012484 authored by Vladimir Glavnyy's avatar Vladimir Glavnyy Committed by Wouter van Oortmerssen

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

parent 92e9f330
......@@ -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; }
......
......@@ -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; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment