Esempio n. 1
0
        public KeywordsInTableT UnPack()
        {
            var _o = new KeywordsInTableT();

            this.UnPackTo(_o);
            return(_o);
        }
Esempio n. 2
0
 public void UnPackTo(KeywordsInTableT _o)
 {
     _o.Is      = this.Is;
     _o.Private = this.Private;
     _o.Type    = this.Type;
     _o.Default = this.Default;
 }
Esempio n. 3
0
 public static Offset <KeywordTest.KeywordsInTable> Pack(FlatBufferBuilder builder, KeywordsInTableT _o)
 {
     if (_o == null)
     {
         return(default(Offset <KeywordTest.KeywordsInTable>));
     }
     return(CreateKeywordsInTable(
                builder,
                _o.Is,
                _o.Private,
                _o.Type));
 }