0
kicks
No More Magic Strings! Presenting: @string.of - Arik Poznanski's Blog
How many times have you seen the following code snippets?
1. Checking method parametersif (executeMethod == null)
{
thrownewArgumentNullException("executeMethod");
}
2. Implementing a property in a WPF / SL view-modelpublicdouble Size
{
get { return _size; }
set
{
_size = value;
RaisePropertyChanged("Size");
}
}
The first time I had to wrote code like this I felt uneasy. Hardcoded strings are bad pract...