代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
自定义公式((H+S)*C/W*12/100)计算
作者:
一叶扁轴
/ 发布于
2014/10/8
/
690
适用与C#的ASP.NET WinForm,控制台程序
//控制台调用 static void Main(string[] args) { double txtH = 30000; double txtS = 100.96; double txtC = 3232; double txtW = 129; double txtX = 1; double txtF = 6; double txtB = 7; string txtGS = "(H+S)*C/W*12/100"; string str= AutomaticCalculation.GetData(txtH, txtS, txtC, txtW, txtX, txtF, txtB, txtGS); } //方法AutomaticCalculation类库 public static string GetData(double txtH, double txtS, double txtC, double txtW, double txtX, double txtF, double txtB, string txtGS) { string no = ""; try { CSharpCodeProvider provider = new CSharpCodeProvider(); //新建编译器访问实例 CompilerParameters parameter = new CompilerParameters(); //编译器传参 parameter.ReferencedAssemblies.Add("System.dll"); parameter.GenerateExecutable = false; parameter.GenerateInMemory = true; string gs = txtGS.ToString(); //获取输入文本的公式类型 string new1 = gs.Replace("H", "{0:###.##}"); string new2 = new1.Replace("S", "{1:###.##}"); string new3 = new2.Replace("C", "{2:###.##}"); string new4 = new3.Replace("W", "{3:###.##}"); string new5 = new4.Replace("X", "{4:###.##}"); string new6 = new5.Replace("F", "{5:###.##}"); string new7 = new6.Replace("B", "{6:###.##}"); String formula = string.Format(new7.ToString(), txtH, txtS, txtC, txtW, txtX, txtF, txtB); CompilerResults result = provider.CompileAssemblyFromSource(parameter, CreateCode(formula));//将你转换好的公式放在这里 if (result.Errors.Count > 0) //进行格式验证 { no = "编译器不能编译非数字格式进行计算"; } else { Assembly assembly = result.CompiledAssembly; //调用一个程序集 Type AType = assembly.GetType("ANameSpace.AClass"); //打开一个类型接口 MethodInfo method = AType.GetMethod("AFunc"); // object a = method.Invoke(null, null); no = Convert.ToDouble(a).ToString("f2"); } } catch (Exception ex) { Console.WriteLine(ex.Message); } return no; } static string CreateCode(string para) { return "using System; namespace ANameSpace{static class AClass{public static object AFunc(){return " + para + ";}}}"; }
试试其它关键字
自定义公式
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
一叶扁轴
贡献的其它代码
(
1
)
.
自定义公式((H+S)*C/W*12/100)计算
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3