コード例 #1
0
ファイル: ExprEvaluator.cs プロジェクト: ikvm/nesper
 /// <summary>
 ///     Initializes a new instance of the <see cref="ProxyExprEvaluator" /> class.
 /// </summary>
 /// <param name="procEvaluate">The @delegate.</param>
 public ProxyExprEvaluator(ExprEvaluatorDelegate procEvaluate)
 {
     ProcEvaluate = procEvaluate;
     ReturnType   = null;
 }
コード例 #2
0
ファイル: ExprEvaluator.cs プロジェクト: ikvm/nesper
 /// <summary>
 ///     Initializes a new instance of the <see cref="ProxyExprEvaluator" /> class.
 /// </summary>
 /// <param name="procEvaluate">The @delegate.</param>
 /// <param name="returnType">Type of the return.</param>
 public ProxyExprEvaluator(ExprEvaluatorDelegate procEvaluate, Type returnType)
 {
     ProcEvaluate = procEvaluate;
     ReturnType   = returnType;
 }