Patcher.Data.Plugins.Content.MemberInfo.SetValue C# (CSharp) Méthode

SetValue() public méthode

public SetValue ( object target, object value ) : void
target object
value object
Résultat 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);
        }