コード例 #1
0
ファイル: ByteSetting.cs プロジェクト: SisyFox/sisycol
 public static Offset <ByteSetting> CreateByteSetting(FlatBufferBuilder builder,
                                                      byte value = 0)
 {
     builder.StartObject(1);
     ByteSetting.AddValue(builder, value);
     return(ByteSetting.EndByteSetting(builder));
 }
コード例 #2
0
ファイル: ByteSetting.cs プロジェクト: SisyFox/sisycol
 public static ByteSetting GetRootAsByteSetting(ByteBuffer _bb, ByteSetting obj)
 {
     return(obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb));
 }