vote up 4 vote down star
2

Hi!

1) What's the policy for declaring a variable? Should you always use the keyword private, or is it ok to skip it?

string MyVar1;

vs.

private string MyVar1;

The only reason I see is that Microsoft one day can change the default access modifiers to public instead of private.

Where does it say that private is optional? Any references to msdn?

2) Naming policy for constants?

I have always used caps when writing a constant, but a friend told me that it's against the Microsoft naming policy, is it?

const string MYVAR1;

vs

const string myVar1;

3) Pascal or Camel?

Personally i think that Camel just looks ugly.

flag

75% accept rate
1  
Just a suggestion, but you might want to retitle this question with something more informative than 'A few C# Questions' so future SO users can find what they need. Ideally, these would have been three different SO questions, though I'm sure some of these have been asked before. – romandas Aug 5 at 15:01
Good point, i changed the title to better indicate the nature of the questions – Patrick Aug 5 at 15:20

14 Answers

vote up 0 vote down

@Dan Diplo # Do not use a prefix for member variables (, m, s_, etc.). If you want to distinguish # between local and member variables you should use “this.” in C# and “Me.” in VB.NET.

That's highly arguable. Prefix helps intellisense: you put prefix char and get a list only of local private instance fields. With this. you will get a full list which consists of methods, fields, properties, events ect.

Consider also following example:

private int _count; 
private int total; 
private decimal price; 

public MyClass(int count, int total, decimal price) 
{ 
    _count = count;     // correct 
    this.total = total; // correct 
    price = price;      // wrong! you forgot this. qualifier 
}
link|flag
Actually, I personally do use underscore for private member variables (habit). I was just pointing out what Microsoft's own internal coding guidelines state. – Dan Diplo Aug 8 at 10:06
Microsoft actually uses m_ prefix for private members of .NET FW classes. – Ray Aug 8 at 10:39
vote up 0 vote down

You may also be interested in Microsoft's own Internal Coding Guidelines for the .NET Framework, as revealed by Brad Abrams in his blog:

Follow all .NET Framework Design Guidelines for both internal and external members. Highlights of these include:

  • Do not use Hungarian notation
  • Do not use a prefix for member variables (, m, s_, etc.). If you want to distinguish
  • between local and member variables you should use “this.” in C# and “Me.” in VB.NET.
  • Do use camelCasing for member variables
  • Do use camelCasing for parameters
  • Do use camelCasing for local variables
  • Do use PascalCasing for function, property, event, and class names
  • Do prefix interfaces names with “I”
  • Do not prefix enums, classes, or delegates with any letter
link|flag
vote up 1 vote down

Do use Pascal casing in field names.

From .NET Framework Developer's Guide Names of Type Members

Do use Pascal casing for all public member, type, and namespace names consisting of multiple words.

Note that this rule does not apply to instance fields. For reasons that are detailed in the Member Design Guidelines, you should not use public instance fields.

From .NET Framework Developer's Guide Capitalization Conventions

Note the implied standard of Pascal casing in constant naming.

DO use constant fields for constants that will never change.

The compiler burns the values of const fields directly into calling code. Therefore, const values can never be changed without the risk of breaking compatibility.

public struct Int32 {
  public const int MaxValue = 0x7fffffff;
  public const int MinValue = unchecked((int)0x80000000);
}

From Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries, Second Edition page 161

I cannot find any reference to whether you should decorate private fields with the term private. that is more of an internal style choice i would assume. Which ever you pick you will want to stay consistent.

link|flag
vote up 1 vote down

Personally, I would love it if constants were ALL_CAPS like in some other languages...I think that it's an quick and easy way to spot constants. Nevertheless, since other constants built into the framework UsePascalCasing, you should too. Consistency is very important.

As far as "Pascal vs. Camel", you run into the same issue. If you were just programming on your own, from scratch, you could do whatever you wanted. But since you're using a preexisting framework, for the sake of consistency, you should emulate the same style. Additionally, once you get used to it, you'll probably find that following the same set of rules will actually help, because you'll instantly know that something is a parameter or local variable (camelCasing) vs a property or constant (PascalCasing).

link|flag
vote up 3 vote down

Not answering your question directly, but maybe you would be interested in Microsoft's StyleCop. This is a tool for analysing your source code with respect to style and consistency rules. By default, it imposes Microsoft's styling guidelines.

link|flag
vote up 0 vote down

Here's a free ebook with C# and VB .net coding guidelines, it's very good

Link to ebook download

Personally though, I like explicitly specifying when something is private, for readability, in fact I'm so used to doing so that when I don't see it I get confused. As for constants, I use PascalCasing.

link|flag
vote up 1 vote down

private is optional, so you can skip it.

However, if your class has a mix of private, protected and public data members, it may be a good idea to specify that a member is private for the sake of readability.

link|flag
vote up 9 vote down

You might be interested in Microsoft's Design Guidelines For Class Library Developers

link|flag
vote up 0 vote down

1) I tend to use private, just to be explicit, but there really is no need to I guess

2) It's true, Microsoft do recommend not using caps for constants.

Microsoft's naming convention gyuidelines for type members can be found here

link|flag
vote up 1 vote down

I doubt Microsoft is ever going to change the default behavior for C# member variables. I would declare things private you want to be private and explicitly declare things public that you want to be public just for clarity if nothing else.

I think the important rule for constants is to just use a naming convention everyone agrees on and that you recognize as a constant. If everyone likes all upper case then use that. If you want to be more standard though use Pascal casing.

link|flag
Why Pascal and not Camel casing? – Patrick Aug 5 at 14:20
vote up 1 vote down

Also private field names should be in camel case, optionaly with prefix _ or m_ :

    private int count;
or
    private string _name;
or
    private decimal m_price;
link|flag
I can't find that anywhere on the Microsoft webpage. – Patrick Aug 5 at 14:15
1  
It's a common practice - all private fields in MSDN examples is camel case. – Ray Aug 5 at 14:33
I agree with Ray (+1) – Juri Aug 5 at 14:40
1  
_ and m_ break Intellisense. They may help in C++, but in C# you're shooting yourself in the foot with them. – Simon Aug 5 at 15:02
1  
Speaking from experience, "m_" doesn't break Intellisense. If it breaks yours then something is wrong with your setup. "m_" is actually really nice because as soon as you start typing it, you get all of of other private vars which follow the same naming convention in Intellisense – Abel Martin Aug 5 at 17:28
show 2 more comments
vote up 0 vote down

private is optional, but extra typing. I like to skip it.

As for the constancts, It depends on your preferences and who you're working with. But when in doubt, look at the .NET Framework and how they name constants.

link|flag
But where is that stated on the Microsoft webpage? Where does it say that private is optional? Everyone know's it, but where is it written? – Patrick Aug 5 at 14:18
@Patrick: you might take a look at the C# language specification: msdn.microsoft.com/en-us/vcsharp/… – Curt Nichols Aug 5 at 14:40
vote up 17 vote down

1) The private keyword is optional. I highly doubt that Microsoft will ever change the default visibility of fields as this would be a massive, breaking change (not to mention a stupid one). Omitting the private keyword is merely a matter of personal taste.

2) Don't use "shouty" constants - follow the convention of the framework and use pascal casing (e.g. ThisIsAConstant is preferable over THIS_IS_A_CONSTANT).

link|flag
4  
I'd add that whilst private is optional, at least be consistent in your code base. That is, use it or don't use it - don't mix. – Kent Boogaart Aug 5 at 14:07
15  
I_AM_AN_OBNOXIOUS_CONSTANT_OOOOH_LOOK_AT_ME_THEN – Kent Boogaart Aug 5 at 14:08
I still can't find where it states that constants should not be all capped. – Patrick Aug 5 at 14:17
They shouldn't because it's annoying and hard to read. – Rex M Aug 5 at 14:21
1  
"They shouldn't because it's annoying and hard to read. – Rex M 1 min ago" Why would it be harder to read them, they just note "Hey! I'm a constant" – Patrick Aug 5 at 14:24
show 6 more comments

Your Answer

Get an OpenID
or

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