Skip to content

Commit edca864

Browse files
committed
Abit more comment
1 parent 47e18f7 commit edca864

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

CodingSeb.ExpressionEvaluator/ExpressionEvaluator.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4752,12 +4752,19 @@ public SubExpression(string expression)
47524752
}
47534753

47544754
/// <summary>
4755-
/// Represent a group of method on which the override to use is not yet known.
4755+
/// Represent a group of method on which the override to call is not yet known.<para/>
4756+
/// Simulate delegates
47564757
/// </summary>
47574758
public partial class MethodsGroupEncaps
47584759
{
4760+
/// <summary>
4761+
/// The instance of the object on which the method group is define
4762+
/// </summary>
47594763
public object ContainerObject { get; set; }
47604764

4765+
/// <summary>
4766+
/// An array of methods overrides infos that could be potentially use for call
4767+
/// </summary>
47614768
public MethodInfo[] MethodsGroup { get; set; }
47624769
}
47634770

0 commit comments

Comments
 (0)