No More Magic Strings! Presenting: @string.of - Arik Poznanski's Blog(blogs.microsoft.co.il)
submitted by
arikp(1204) 1 year, 6 months ago
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...
|category: C#
|Views: 2
tags:
C# another
Everyones tags:
Your Tags: