Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
flatbuffers
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
flatbuffers
Commits
b7012484
Commit
b7012484
authored
Jun 25, 2019
by
Vladimir Glavnyy
Committed by
Wouter van Oortmerssen
Jun 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set C# Struct/Table visibility to public (#5381) (#5416)
parent
92e9f330
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Struct.cs
net/FlatBuffers/Struct.cs
+1
-1
Table.cs
net/FlatBuffers/Table.cs
+1
-1
No files found.
net/FlatBuffers/Struct.cs
View file @
b7012484
...
...
@@ -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
;
}
...
...
net/FlatBuffers/Table.cs
View file @
b7012484
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment