public void SetValue(object target, object value) { try { _source.SetValue(target, (TValue)value); } catch (Exception) { throw; } }
public void SetValue(object target, object value) { try { _source.SetValue(target, (TValue)value); } catch (Exception ex) { LogHelper.Debug(ex); throw; } }