Base type safety in C#. Clear FlatBufferBuilder in C#.

This commit is contained in:
RevenantX
2015-07-29 00:33:45 +03:00
parent 6e192fa408
commit 588564d74f
12 changed files with 188 additions and 53 deletions

View File

@@ -41,6 +41,11 @@ namespace FlatBuffers
_pos = 0;
}
public void Reset()
{
_pos = 0;
}
public int Position { get { return _pos; } }
// Pre-allocated helper arrays for convertion.