OkraFramework / Okra.Core

Okra App Framework - The Okra App Framework is designed to support the development of .Net Windows Store applications, in particular those following the MVVM pattern.
http://okraframework.github.io
Apache License 2.0
10 stars 6 forks source link

Use _camelCase for private members #65

Closed Andy-Wilkinson closed 9 years ago

Andy-Wilkinson commented 9 years ago

For consistency with the ASP.Net guidelines (https://github.com/aspnet/Home/wiki/Engineering-guidelines) may wish to change private member naming to include underscore.

Currently: myPrivateMember To: _myPrivateMember

Andy-Wilkinson commented 9 years ago

Used https://github.com/dotnet/codeformatter to convert all private fields to desired format