diff options
author | Vladimir Glavnyy <31897320+vglavnyy@users.noreply.github.com> | 2019-06-25 07:51:04 +0700 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2019-06-24 17:51:04 -0700 |
commit | b7012484f3f9caa54389d43b93a80fa672ef37f1 (patch) | |
tree | 886ea5470fda179540f0ce1079fd8a510191638e /net | |
parent | 92e9f330363af45972fbed68cca919f6ce86a36b (diff) | |
download | flatbuffers-b7012484f3f9caa54389d43b93a80fa672ef37f1.tar.gz flatbuffers-b7012484f3f9caa54389d43b93a80fa672ef37f1.tar.bz2 flatbuffers-b7012484f3f9caa54389d43b93a80fa672ef37f1.zip |
Set C# Struct/Table visibility to public (#5381) (#5416)
Diffstat (limited to 'net')
-rw-r--r-- | net/FlatBuffers/Struct.cs | 2 | ||||
-rw-r--r-- | net/FlatBuffers/Table.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/FlatBuffers/Struct.cs b/net/FlatBuffers/Struct.cs index 82a3d10d..4f7fac9d 100644 --- a/net/FlatBuffers/Struct.cs +++ b/net/FlatBuffers/Struct.cs @@ -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; } diff --git a/net/FlatBuffers/Table.cs b/net/FlatBuffers/Table.cs index 9d0744a1..e10ba95e 100644 --- a/net/FlatBuffers/Table.cs +++ b/net/FlatBuffers/Table.cs @@ -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; } |