Patcher.Data.Plugins.Content.MemberInfo.SetValue C# (CSharp) Method

SetValue() public method

public SetValue ( object target, object value ) : void
target object
value object
return void
        public void SetValue(object target, object value)
        {
            if (IsListType)
                throw new InvalidOperationException("Cannot set value to field that is a list");

            property.SetValue(target, value, null);
        }