Beispiel #1
0
 /// <summary>
 /// Reads a BSON Double from the reader.
 /// </summary>
 /// <returns>A Double.</returns>
 public override double ReadDouble()
 {
     if (Disposed) { ThrowObjectDisposedException(); }
     VerifyBsonType("ReadDouble", BsonType.Double);
     State = GetNextState();
     return _bsonStream.ReadDouble();
 }
        static int _m_ReadDouble(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);



                {
                    double gen_ret = gen_to_be_invoked.ReadDouble(  );
                    LuaAPI.lua_pushnumber(L, gen_ret);



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