Пример #1
0
        protected override object OnCalc(IList <object> operands, object[] args)
        {
            string file       = operands[0] as string;
            string className  = operands[1] as string;
            string methodName = operands[2] as string;
            uint   pos        = CastTo <uint>(operands[3]);
            int    size       = CastTo <int>(operands[4]);

            ScriptProcessor.WriteNops(file, className, methodName, pos, size);
            return(0);
        }
Пример #2
0
        protected override CalculatorValue OnCalc(IList <CalculatorValue> operands)
        {
            string file       = operands[0].AsString;
            string className  = operands[1].AsString;
            string methodName = operands[2].AsString;
            uint   pos        = CastTo <uint>(operands[3]);
            int    size       = CastTo <int>(operands[4]);

            ScriptProcessor.WriteNops(file, className, methodName, pos, size);
            return(0);
        }