嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#利用脚本做了一个公式编辑器
在程序中将复杂的逻辑用脚本管理,当业务或算法发生变更的时候就不用再修改程序了,直接在页面上编辑公式就行了。特别是在人力资源系统计算工资的时候,非常好用。
.
├── 好例子网_C#利用脚本做了一个公式编辑器.rar
└── 利用脚本做了一个公式编辑器
└── ScriptTest
├── CUMT.Fomular
│ ├── CUMT.Fomula.csproj
│ ├── DefaultFomulaStrategy.cs
│ ├── Event
│ │ └── Exceptions.cs
│ ├── FomulaUtil.cs
│ ├── IFomulaStrategy.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Serialization
│ │ └── System.Xml.Serialization.CDATA.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── CUMT.Fomula.dll
│ │ │ ├── CUMT.Fomula.pdb
│ │ │ ├── CUMT.Scripts.dll
│ │ │ ├── CUMT.Scripts.pdb
│ │ │ └── Interop.MSScriptControl.dll
│ │ └── Release
│ │ ├── CUMT.Fomula.dll
│ │ ├── CUMT.Fomula.pdb
│ │ ├── CUMT.Scripts.dll
│ │ ├── CUMT.Scripts.pdb
│ │ └── Interop.MSScriptControl.dll
│ ├── function
│ │ ├── Function.cs
│ │ └── Interface.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── CUMT.Fomula.csproj.FileListAbsolute.txt
│ │ │ ├── CUMT.Fomula.dll
│ │ │ ├── CUMT.Fomula.pdb
│ │ │ ├── Refactor
│ │ │ │ └── CUMT.Fomula.dll
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── Release
│ │ ├── CUMT.Fomula.csproj.FileListAbsolute.txt
│ │ ├── CUMT.Fomula.dll
│ │ ├── CUMT.Fomula.pdb
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ └── xml
│ └── JavascriptExample.xml
├── CUMT.Scripts
│ ├── CUMT.Scripts.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ScriptEngine.cs
│ ├── ScriptLanguage.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── CUMT.Scripts.dll
│ │ │ ├── CUMT.Scripts.pdb
│ │ │ └── Interop.MSScriptControl.dll
│ │ ├── Release
│ │ │ ├── CUMT.Scripts.dll
│ │ │ ├── CUMT.Scripts.pdb
│ │ │ └── Interop.MSScriptControl.dll
│ │ ├── msscrchs.dll
│ │ ├── msscript.cnt
│ │ └── msscript.ocx
│ ├── event
│ │ └── Event.cs
│ └── obj
│ ├── Debug
│ │ ├── CUMT.Scripts.csproj.FileListAbsolute.txt
│ │ ├── CUMT.Scripts.csproj.ResolveComReference.cache
│ │ ├── CUMT.Scripts.dll
│ │ ├── CUMT.Scripts.pdb
│ │ ├── Interop.MSScriptControl.dll
│ │ ├── Refactor
│ │ └── TempPE
│ └── Release
│ ├── CUMT.Scripts.csproj.FileListAbsolute.txt
│ ├── CUMT.Scripts.csproj.ResolveComReference.cache
│ ├── CUMT.Scripts.dll
│ ├── CUMT.Scripts.pdb
│ ├── Interop.MSScriptControl.dll
│ └── TempPE
├── MK.Common
│ ├── DataQuery
│ │ ├── DataQuery.xml
│ │ └── StoredDataQuery.cs
│ ├── Echo.cs
│ ├── MK.Common.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── MK.Common.dll
│ │ └── MK.Common.pdb
│ └── obj
│ └── Debug
│ ├── MK.Common.csproj.FileListAbsolute.txt
│ ├── MK.Common.dll
│ ├── MK.Common.pdb
│ └── TempPE
├── ScriptTest
│ ├── App_Data
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── Default.aspx.designer.cs
│ ├── Fomula
│ │ ├── Backup.aspx
│ │ ├── Backup.aspx.cs
│ │ ├── Backup.aspx.designer.cs
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── Default.aspx.designer.cs
│ │ ├── FomulaLiberary.xml
│ │ ├── Scripts
│ │ │ ├── Backup
│ │ │ │ └── Config.xml
│ │ │ └── Default
│ │ │ ├── GongZi.xml
│ │ │ ├── JavascriptExample.xml
│ │ │ └── KaoQin.xml
│ │ ├── css
│ │ │ ├── Site_Css.css
│ │ │ ├── css.css
│ │ │ └── extend.css
│ │ └── editor
│ │ ├── CodePressFunctionEditor.ascx
│ │ ├── CodePressFunctionEditor.ascx.cs
│ │ ├── CodePressFunctionEditor.ascx.designer.cs
│ │ ├── HTMLPaasddfge.htm
│ │ ├── ParameterEditor.ascx
│ │ ├── ParameterEditor.ascx.cs
│ │ ├── ParameterEditor.ascx.designer.cs
│ │ └── codepress
│ │ ├── codepress.css
│ │ ├── codepress.html
│ │ ├── codepress.js
│ │ ├── editor.css
│ │ ├── editor.htm
│ │ ├── engines
│ │ │ ├── gecko.js
│ │ │ ├── khtml.js
│ │ │ ├── msie.js
│ │ │ ├── older.js
│ │ │ └── opera.js
│ │ ├── images
│ │ │ └── line-numbers.png
│ │ ├── index.html
│ │ ├── languages
│ │ │ ├── generic.css
│ │ │ ├── generic.js
│ │ │ ├── javascript.css
│ │ │ ├── javascript.js
│ │ │ ├── sql.css
│ │ │ └── sql.js
│ │ ├── license.txt
│ │ └── util.js
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ScriptTest.csproj
│ ├── ScriptTest.csproj.user
│ ├── Web.config
│ ├── bin
│ │ ├── CUMT.Fomula.dll
│ │ ├── CUMT.Fomula.pdb
│ │ ├── CUMT.Scripts.dll
│ │ ├── CUMT.Scripts.pdb
│ │ ├── Interop.MSScriptControl.dll
│ │ ├── MK.Common.dll
│ │ ├── MK.Common.pdb
│ │ ├── ScriptTest.dll
│ │ └── ScriptTest.pdb
│ └── obj
│ └── Debug
│ ├── ResolveAssemblyReference.cache
│ ├── ScriptTest.csproj.FileListAbsolute.txt
│ ├── ScriptTest.dll
│ ├── ScriptTest.pdb
│ └── TempPE
├── ScriptTest.sln
└── ScriptTest.suo
54 directories, 127 files