Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Which one do you choose and why:

public class User
{
    public long UserID { get; set; }
}

public class User
{
    public long UserId { get; set; }
}

And also as parameters:

public void DoSomething(long userId) { }
public void DoSomething(long userID) { }
share|improve this question
1  
@CodyGray: Oh so many duplicates..but why did I get no result by searching in SO using [c#] ID Id :( at least no result on the first page. – Danny Chen Jan 11 '12 at 5:20
No idea. I use Google for searching. I think they invented it, at least the working version. One problem is that some people label/tag their questions with c#, others label/tag with .net. There's no real consistency for questions that aren't actually about the language but give incidental code samples in a particular dialect. – Cody Gray Jan 11 '12 at 5:22

2 Answers

up vote 3 down vote accepted

The conventions make it very clear to choose UserId and userId respectively (emphasis mine):

The two abbreviations that can be used in identifiers are ID and OK. In Pascal-cased identifiers they should appear as Id, and Ok. If used as the first word in a camel-cased identifier, they should appear as id and ok, respectively.

share|improve this answer
But to be honest, I've asked a few teammates(all Chinese), all of us feel strange to UserId, we know the naming conentions, but it really feels bad. It's a weird understanding to all of us(maybe only to Chinese programmers? LOL) – Danny Chen Jan 11 '12 at 5:17
Of course, the framework methods don't all follow this internally. And thanks to IntelliSense, it hardly matters which one you pick. – Cody Gray Jan 11 '12 at 5:18
@DannyChen: For what it's worth, I'm not Chinese and UserId looks ugly/wrong to me, too. I generally make exceptions for two-letter acronyms/abbreviations because it hardly hurts readability. – Cody Gray Jan 11 '12 at 5:19
If you get resharper you can choose convensions and it will raise warnings or errors if you are keen to conform to the convesions. – Dessus Jan 11 '12 at 5:19
@Dessus: You don't have to shell out the money for Resharper to get annoying nags. StyleCop will do the same thing for free, and it's even customizable. – Cody Gray Jan 11 '12 at 5:24

For Id, its short for Identifier, and not an acronym; It makes sense to make it lower case after the first letter.

share|improve this answer
1  
Even HTML, URL and URI, as acronyms, in Pascal case are capitalized as Html, Url and Uri respectively. – BoltClock Jan 11 '12 at 5:17
Yea but for his case it wouldn't make sense under any scheme – Dessus Jan 11 '12 at 5:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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