Example #1
0
 public static Offset <ULongEntry> CreateULongEntry(FlatBufferBuilder builder,
                                                    ulong key   = 0,
                                                    ulong value = 9223372036854775807)
 {
     builder.StartObject(2);
     ULongEntry.AddValue(builder, value);
     ULongEntry.AddKey(builder, key);
     return(ULongEntry.EndULongEntry(builder));
 }
Example #2
0
 public static ULongEntry GetRootAsULongEntry(ByteBuffer _bb, ULongEntry obj)
 {
     return(obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb));
 }