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

SetValue() public method

public SetValue ( object target, object propertyValue ) : void
target object
propertyValue object
return void
        public void SetValue(object target, object propertyValue)
        {
            ((Array)target).SetValue(propertyValue, Index);
        }

Usage Example

Example #1
0
 public void SetValue(object target, object propertyValue)
 {
     _getter.SetValue(target, propertyValue);
 }