Naming Convention Redux

  • Thread starter Thread starter clintonG
  • Start date Start date
C

clintonG

How are you all doing with not using Hungarian as it has been recommended?

// LinkButton
ChannelTitle or channelTitle?

// LinkButton
ChannelTitleLinkButton or channelTitleLinkButton?

Others?

<%= Clinton Gallagher
 
Clinton,

Personally, I'm doing just fine without it. I see Hungarian notation,
and it makes me sick.

As for your casing, the recommendations are specific about that as well.
ChannelTitle is indicative of a type name, while channelTitle is indicative
of a variable/field name.
 
Back
Top