Click here to Skip to main content
15,895,812 members
Articles / Programming Languages / C#

Naming Properties in MVVM

Rate me:
Please Sign up or sign in to vote.
4.00/5 (1 vote)
20 Jul 2011CPOL1 min read 24.8K  
A better method for naming properties in MVVM to solve some problems.

Alternatives

Members may post updates or alternatives to this current article in order to show different approaches or add new features.

Please Sign up or sign in to vote.
24 Nov 2011Kim Breugelmans
I use a helper class to get property names based on expressions public static class ObservableHelper { public static PropertyChangedEventArgs CreateArgs(Expression> propertyExpression) { return new...
Please Sign up or sign in to vote.
20 Jul 2011Daniel Gidman
PropertyChange...

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions