文件名称:NCalc2:NCalc的GitHub从http的克隆
文件大小:254KB
文件格式:ZIP
更新时间:2024-05-23 12:50:56
c-sharp dotnetcore dotnet-core dotnet-standard expression-parser
计算器 来自的NCalc的克隆,具有以下更改: 添加了对CoreCLR(.NET Standard 1.3+)的支持 嵌入式的Antlr便携式版本(无需额外的库/依赖项) 向实际CLR lambda添加了表达式的编译 安装 只需通过NuGet安装软件包 PM > Install-Package CoreCLR - NCalc 创建Lambda 简单表达 var expr = new [removed] " 1 + 2 " ); Func < int> f = expr . ToLambda < int>(); Console . WriteLine ( f ()); // will print 3 具有函数和参数的表达式 class ExpressionContext { public int Param1 { get ; set ; } public string