vote up 0 vote down star

When writing my first asp.net MVC application using C#, I see that there are some variables whose name start with an underscore character(_).

What does this mean? Is there any specific meaning for this?

flag

4 Answers

vote up 5 vote down check

There's no language-defined meaning - it's just a convention some people use to distinguish instance variables from local variables. Other variations include m_foo (and s_foo or g_foo or static variables) or mFoo; alternatively some people like to prefix the local variables (and parameters) instead of the instance variables.

Personally I don't use prefixes like this, but it's a style choice. So long as everyone working on the same project is consistent, it's usually not much of an issue. I've seen some horribly inconsistent code though...

link|flag
vote up 4 vote down

In general, this means private member fields.

link|flag
More generally, for non-public instance fields (that includes protected and internal ones too). – Noldorin Feb 14 at 19:36
vote up 0 vote down

A lot of people use them for property private variables (the variables that actually store the values for public properties).

link|flag
vote up 0 vote down

I have seen it used as a variable name for parameters which are not being used as a way to 'hide' them away from the rest of the function.

I can't say this is a good or bad thing but it was effective at indicating that the parameter was not to be used in the function.

link|flag

Your Answer

Get an OpenID
or

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