Most common method/variable/class names that you use often and that explain you intent clearly and precisely.Is there any pattern you follow to figure that out.

link|improve this question
3  
... community wiki demand bombs away in 4..3..2... – Sathya Sep 25 '09 at 9:49
feedback

3 Answers

int i = 0;

I guess.

link|improve this answer
that's part of a for loop i hope ;) – wefwfwefwe Sep 25 '09 at 10:16
also, int j and int k :) – wds Sep 25 '09 at 12:10
feedback

It's not common names, but common patterns of names I think you need

So I try to make the variables mean something

successfulTransmissionCount

widgetUnitPrice

unusedSessionTimeout

But then on occasions, where there is scope for ambiguity I may use a "units" suffix. If I'm dealing with two existing APIs one that works in seconds and one that works in milliseconds it really helps my eyes to be reminded of the units

 long unusedSessionTimeoutMillis

(Yes there are alternatives to using raw primitive types that may give the same effect)

link|improve this answer
feedback

object sender, EventArgs e

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.