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)
4752
4752
}
4753
4753
4754
4754
/// <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
4756
4757
/// </summary>
4757
4758
public partial class MethodsGroupEncaps
4758
4759
{
4760
+ /// <summary>
4761
+ /// The instance of the object on which the method group is define
4762
+ /// </summary>
4759
4763
public object ContainerObject { get ; set ; }
4760
4764
4765
+ /// <summary>
4766
+ /// An array of methods overrides infos that could be potentially use for call
4767
+ /// </summary>
4761
4768
public MethodInfo [ ] MethodsGroup { get ; set ; }
4762
4769
}
4763
4770
You can’t perform that action at this time.
0 commit comments