Naming Convention

by Buddy Lindsey on November 26, 2006

Well from time to time I write bad code, I mean all the time. Most of that stems from bad OOP knowledge and no clear idea on how to implement OOP. Another problem I suffer from is no naming convention. That problem has plagued me because when I code I am not sure what I am referencing. For example

//variable
meIsVariable;
//method
meMethod();

See the problem with that is that they both look the same so you wouldn’t know which is which. Now most people are like “well that is just common sense.” Not to newbs like me it isn’t. However, after looking through a lot of code lately, C# code, this is the trend that I see.

//variable
meIsVariable;
//method
MeIsMethod();

This will make things easier for me in the future when developing. Now if you read my code you will know what is what.

Related Posts:

Was this Helpful?

If you found this article useful you might find others useful as well. Please browse the archives and subscribe to the RSS Feed to stay up-to-date.

Leave a Comment

Previous post:

Next post: