首页  编辑  

通过数据表计算表达式

Tags: /C#/其他技巧/   Date Created:

public static object Eval( string AExpression)

{

    try

   {

        return new DataTable () . Compute(AExpression, "" );

   }

    catch

   {

        return null ;

   }

}