File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
CodingSeb.ExpressionEvaluator Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments