public StructInNestedNST UnPack()
        {
            var _o = new StructInNestedNST();

            this.UnPackTo(_o);
            return(_o);
        }
 public static Offset <NamespaceA.NamespaceB.StructInNestedNS> Pack(FlatBufferBuilder builder, StructInNestedNST _o)
 {
     if (_o == null)
     {
         return(default(Offset <NamespaceA.NamespaceB.StructInNestedNS>));
     }
     return(CreateStructInNestedNS(
                builder,
                _o.A,
                _o.B));
 }
 public void UnPackTo(StructInNestedNST _o)
 {
     _o.A = this.A;
     _o.B = this.B;
 }