Baseline.Reflection.IndexerValueGetter.GetValue C# (CSharp) Method

GetValue() public method

public GetValue ( object target ) : object
target object
return object
        public object GetValue(object target)
        {
            return ((Array)target).GetValue(Index);
        }

Usage Example

Example #1
0
 public object GetValue(object target)
 {
     return(_getter.GetValue(target));
 }