我需要将两个输入的双数相除,并尝试用catch来处理DivideByZeroException及其它。
ParameterExpression dInput1 = Expression.Parameter(typeof(double), "input1");
ParameterExpression dInput2 = Expression.Parameter(typeof(double), "input2");
ParameterExpression e_DBZ = Expression.Parameter(typeof(DivideByZeroException));
ParameterExpression e_ = Expression.Parameter(typeof(Exception));
var _calc = Expression.Divide(dInput1, dInput2);
MethodInfo _consolewrite = typeof(Console).GetMethod("WriteLine",new Type[] { typeof(string) });
MethodCallExpression _output = Expression.Call(null, _consolewrite, Expression.Convert(Expression.Constant(_calc,typeof(double)), typeof(string)));
var _catch_DivideByZeroException = Expression.Catch(e_DBZ, Expression.Call(null, _consolewrite, Expression.Property(e_DBZ, "Message")));
var _catch_Exception = Expression.Catch(e_, Expression.Call(null, _consolewrite, Expression.Property(e_DBZ, "Message")));
var _calc_Block = Expression.Block(_calc, Expression.Constant(0));
var _try = Expression.TryCatch(_calc_Block, _catch_DivideByZeroException, _catch_Exception);
var _lambda = Expression.Lambda<Func<double,double, double>>(_try, dInput1,dInput2);
Console.WriteLine(_lambda.Body);
Console.WriteLine(_lambda.Compile().Invoke(1,0));
但是Expression.Convert抛出System.ArgumentException。
答案 0 :(得分:0)
您的整体方法似乎不正确,当您致电Report
并在外部发出Expression.Convert
但是,尽管如此,这是Expression.Convert的一个有效示例:
Expression.Call()
如果您深入研究Expression.Convert文档,则会发现包含以下行的表:
例外
异常:
ArgumentNullException
条件: 表达式或类型为 null 。
这意味着您整个表达式都将生成null,或者您的字符串为null。
答案 1 :(得分:-1)
这怎么了?
try
{
var e_DBZ = dInput1 / dInput2;
}
catch (Exception e)
{
// Handle Divide by Zero error
Console.WriteLine(e.Message);
}