■ Expression-Bodied 멤버에서 예외를 발생시키는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
using System; /// <summary> /// ID /// </summary> private int id; /// <summary> /// ID /// </summary> public int ID { get => this.id; set => this.id = value > 0 ? value : throw new ArgumentException(); } |