public void UnPackTo(FooT _o)
 {
     _o.Id     = this.Id;
     _o.Count  = this.Count;
     _o.Prefix = this.Prefix;
     _o.Length = this.Length;
 }
        public FooT UnPack()
        {
            var _o = new FooT();

            this.UnPackTo(_o);
            return(_o);
        }
 public static Offset <Benchmark.FBBench.Google.Foo> Pack(FlatBufferBuilder builder, FooT _o)
 {
     if (_o == null)
     {
         return(default(Offset <Benchmark.FBBench.Google.Foo>));
     }
     return(CreateFoo(
                builder,
                _o.Id,
                _o.Count,
                _o.Prefix,
                _o.Length));
 }