1
1
/******************************************************************************************************
2
2
Title : ExpressionEvaluator (https://github.com/codingseb/ExpressionEvaluator)
3
- Version : 1.4.6.0
3
+ Version : 1.4.6.1
4
4
(if last digit (the forth) is not a zero, the version is an intermediate version and can be unstable)
5
5
6
6
Author : Coding Seb
@@ -817,7 +817,7 @@ public BindingFlags StaticBindingFlag
817
817
#region Custom and on the fly variables and methods
818
818
819
819
/// <summary>
820
- /// If set, this object is used to use it's properties and methods as global variables and functions
820
+ /// If set, this object is used to use it's fields, properties and methods as global variables and functions
821
821
/// </summary>
822
822
public object Context { get ; set ; }
823
823
@@ -884,7 +884,7 @@ public ExpressionEvaluator(IDictionary<string, object> variables) : this()
884
884
/// <summary>
885
885
/// Constructor with context initialize
886
886
/// </summary>
887
- /// <param name="context">the context that propose it's methods and properties to the evaluation</param>
887
+ /// <param name="context">the context that propose it's fields, properties and methods to the evaluation</param>
888
888
public ExpressionEvaluator ( object context ) : this ( )
889
889
{
890
890
Context = context ;
@@ -893,7 +893,7 @@ public ExpressionEvaluator(object context) : this()
893
893
/// <summary>
894
894
/// Constructor with variables and context initialize
895
895
/// </summary>
896
- /// <param name="context">the context that propose it's methods and properties to the evaluation</param>
896
+ /// <param name="context">the context that propose it's fields, properties and methods to the evaluation</param>
897
897
/// <param name="variables">The Values of variables use in the expressions</param>
898
898
public ExpressionEvaluator ( object context , IDictionary < string , object > variables ) : this ( )
899
899
{
0 commit comments