コード例 #1
0
        protected override object OnCalc(IList <object> operands, object[] args)
        {
            string file = operands[0] as string;

            ScriptProcessor.EndReplace(file);
            return(0);
        }
コード例 #2
0
ファイル: Commands.cs プロジェクト: dreamanlan/DotnetPatch
        protected override CalculatorValue OnCalc(IList <CalculatorValue> operands)
        {
            string file = operands[0].AsString;

            ScriptProcessor.EndReplace(file);
            return(0);
        }