示例#1
0
 private void WriteNameHelper()
 {
     if (_context.ContextType == ContextType.Array)
     {
         var index     = _context.Index++;
         var nameBytes = ArrayElementNameAccelerator.Default.GetElementNameBytes(index);
         _bsonStream.WriteCStringBytes(nameBytes);
     }
     else
     {
         _bsonStream.WriteCString(Name);
     }
 }
        static int _m_WriteCStringBytes(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                MongoDB.Bson.IO.BsonStream gen_to_be_invoked = (MongoDB.Bson.IO.BsonStream)translator.FastGetCSObj(L, 1);



                {
                    byte[] _value = LuaAPI.lua_tobytes(L, 2);

                    gen_to_be_invoked.WriteCStringBytes(_value);



                    return(0);
                }
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
        }