문제

Imagine a default property:

class Positive {
  public int Value { get; set; }
}

I would like to add a precondition: that the set value can only be positive. Is it possible to do that without adding the member-variable boilerplate?

  public int Value { get;
     set {
        if(value < 0) throw new ArgumentOutOfBoundsException();
        // continue doing 'the default thing'
        // instead of `value_=value`, mirrored by a change in the
        // get, and adding the `int value_` member variable
     }
  };
도움이 되었습니까?

해결책

No, you need to explicitly declare the property in order to do what you need. Automatically implemented properties are just shorthand for the longer syntax anyhow, so in order to add additional logic to the get or set you must code them by hand.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top