mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-15 00:38:52 +00:00
* [C#] Fixes issue #5399 by always including namespaces * Updated tests for code generator changes * Fixed 'As' method names
This commit is contained in:
committed by
Wouter van Oortmerssen
parent
a6be1d0d74
commit
a80db8538c
@@ -19,9 +19,9 @@ public struct Monster : IFlatbufferObject
|
||||
|
||||
|
||||
public static void StartMonster(FlatBufferBuilder builder) { builder.StartTable(0); }
|
||||
public static Offset<Monster> EndMonster(FlatBufferBuilder builder) {
|
||||
public static Offset<MyGame.Example2.Monster> EndMonster(FlatBufferBuilder builder) {
|
||||
int o = builder.EndTable();
|
||||
return new Offset<Monster>(o);
|
||||
return new Offset<MyGame.Example2.Monster>(o);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user