Exemplo n.º 1
0
        public void PushReference(int index)
        {
            var dst = ILIntepreter.Add(ebp, index);

            esp->ObjectType      = ObjectTypes.StackObjectReference;
            *(long *)&esp->Value = (long)dst;
            esp++;
        }
Exemplo n.º 2
0
        public T ReadObject <T>(int index)
        {
            var esp = ILIntepreter.Add(ebp, index);

            return((T)typeof(T).CheckCLRTypes(StackObject.ToObject(esp, domain, mStack)));
        }
Exemplo n.º 3
0
        public bool ReadBool(int index)
        {
            var esp = ILIntepreter.Add(ebp, index);

            return(esp->Value == 1);
        }
Exemplo n.º 4
0
        public double ReaDouble(int index)
        {
            var esp = ILIntepreter.Add(ebp, index);

            return(*(double *)&esp->Value);
        }
Exemplo n.º 5
0
        public float ReadFloat(int index)
        {
            var esp = ILIntepreter.Add(ebp, index);

            return(*(float *)&esp->Value);
        }
Exemplo n.º 6
0
        public long ReadLong(int index)
        {
            var esp = ILIntepreter.Add(ebp, index);

            return(*(long *)&esp->Value);
        }
Exemplo n.º 7
0
        public int ReadInteger(int index)
        {
            var esp = ILIntepreter.Add(ebp, index);

            return(esp->Value);
        }