Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| // <Snippet1> | |
| using System; | |
| public class Person | |
| { | |
| private int m_Age; | |
| public int Age | |
| { | |
| get { return m_Age; } | |
| set { | |
| if (value < 0 || value > 125) | |
| { | |
| throw new ArgumentOutOfRangeException("The value of the Age property must be between 0 and 125."); | |
| } | |
| else | |
| { | |
| m_Age = value; | |
| } | |
| } | |
| } | |
| } | |
| // </Snippet1> |