Releases: zzzprojects/Eval-Expression.NET
Releases · zzzprojects/Eval-Expression.NET
v4.0.13
v4.0.12
v4.0.11
v4.0.10
v4.0.9
v4.0.8
Download the library here
- FIXED: Type in a property name in
EvalException
class added in v4.0.7
public class EvalException : Exception
{
/// <summary>Gets or sets the original code.</summary>
/// <value>The original code.</value>
public string OriginalCode { get; set; }
/// <summary>Gets or sets the parsed code.</summary>
/// <value>The parsed code.</value>
public string ParsedCode { get; set; }
/// <summary>Gets or sets the token.</summary>
/// <value>The token.</value>
public string Token { get; set; }
/// <summary>Gets or sets the start position of the exception (from the parsed code).</summary>
/// <value>The start position (from the parsed code).</value>
public int StartPosition { get; set; }
/// <summary>Gets or sets the near text (from the parsed code).</summary>
/// <value>The near text (from the parsed code).</value>
public string NearText { get; set; }
}
Trial unlocked until the end of August
v4.0.7
Download the library here
- ADDED: Most exception now throw an
EvalException
(NullReferenceException not very descriptive when parameter is not provided #78)
public class EvalException : Exception
{
/// <summary>Gets or sets the original code.</summary>
/// <value>The original code.</value>
public string OriginalCode { get; set; }
/// <summary>Gets or sets the parsed code.</summary>
/// <value>The parsed code.</value>
public string ParsedCode { get; set; }
/// <summary>Gets or sets the token.</summary>
/// <value>The token.</value>
public string Token { get; set; }
/// <summary>Gets or sets the start position of the exception (from the parsed code).</summary>
/// <value>The start position (from the parsed code).</value>
public int StartPosition { get; set; }
/// <summary>Gets or sets the near text (from the parsed code).</summary>
/// <value>The near text (from the parsed code).</value>
public string NearText { get; set; }
}
Trial unlocked until the end of August