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

SetList() public method

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

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