C# Variable Naming -


i wondering best way of naming variable in c#? know there several different ways wondering why people prefer 1 on other?

i tend use lowercase letter representing type (i think hungarian method?) lot of people don't this, best way?

example:

string smystring string mystring string mystring string mystring 

thanks

the common convention have seen c# when naming fields , local variables camel case:

string mystring 

here microsoft guidelines capitalization in c#. state (amongst others):

the following guidelines provide general rules identifiers.

do use pascal casing public member, type, , namespace names consisting of multiple words.

note rule not apply instance fields. reasons detailed in member design guidelines, should not use public instance fields.

do use camel casing parameter names.


i add needs agreed team members.


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -