Switched C# accessors from classes to structs

This commit is contained in:
Wouter van Oortmerssen
2016-08-12 18:01:38 -07:00
parent d05d114523
commit 52ca75506a
32 changed files with 541 additions and 388 deletions

View File

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