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.

I am in the process of unifying these inconsistent naming conventions and this one problem has been a bit driving me crazy lately.

In the code base I am working with has no convention regarding "ID"; "ID", "Id" and even "iD" are used inconsistently.

**Question: In .NET, how do you guys capitalize "ID"? For an example, nodeID, nodeId? FolderID or FolderId?

**Edit: How about plural cases? then should I do "NodeIDs" or "NodeIds"?

Thanks

share|improve this question
Just keep in mind that variable naming and GUI labels follow different rules! On the GUI, it's ID and OK, not Id and Ok. – Jon B Feb 27 '09 at 19:00
Why would GUI labels be different from other identifiers? – Tom Lokhorst Feb 27 '09 at 19:05
They should all follow similar rules. This chaos you see is what happened before FxCop and Framework Design Guidelines were widespread inside Microsoft. You should use "Id" and "Ok" on all new code. See my answer for a link to my post where I talk about this more. – Jeff Moser Feb 27 '09 at 19:05
I was trying to find the answer to this same question. Is it true that identification is another word for identity document? This would explain the "ID" acronym. – Josiah Ruddell Apr 29 '09 at 15:19

6 Answers

up vote 32 down vote accepted

Capitalization is for 2 letters acronyms. UI, IP, etc.

"Id" is an abbreviation for Identifier, so it should stay pascal cased.

share|improve this answer
How about plural cases? then should I do "NodeIDs" or "NodeIds"? – Sung Feb 27 '09 at 18:59
3  
In the plural case it's still no acronym, so I'd say "NodeIds". – Tom Lokhorst Feb 27 '09 at 19:02
1  
From where does the rule that an "abbreviation" "should stay pascal cased" come from? M-W and OED2 both call it an "abbreviation", for example, and both still use all-upper-case. – Ken Dec 10 '11 at 1:28
1  
This answer is supported by the Code Analysis in Visual Studio: "CA1709 : Microsoft.Naming : Correct the casing of 'ID' in member name 'InvoiceSearch.DeliveryID' by changing it to 'Id'. 'Id' is an abbreviation and therefore is not subject to acronym casing guidelines." – Daniel Hilgarth Oct 22 '12 at 11:08

Microsoft's naming guidelines suggest using all capitalized for 2 letter acronyms made into identifiers (IP, IO, UI, etc), so I tend towards "ID" (even though it's not an acronym) because when I read it, I still say the letters individually.

But honestly, I don't think Microsoft knows/knew what to do with ID/Id either:

ID

System.Runtime.InteropServices._Activator.GetIDsOfNames()
System._AppDomain.GetIDsOfNames()
System.Runtime.InteropServices._Attribute.GetIDsOfNames()
System.Type.GetTypeFromProgID()
System.Threading.Thread.ThreadID
System.Threading.Thread.GetDomainID()
System.Runtime.Serialization.ObjectHolder.ContainerID
System.Globalization.Calendar.ID
System.Globalization.CultureInfo.InvariantCultureID
System.Web.UI.Control.ClientID
System.Web.UI.Control.UniqueID

Id

System.AppDomain.GetCurrentThreadId()
System.AppDomain.GetIdForUnload()
System.AppDomain.IsDomainIdValid()
System.AppDomain.GetId()
System.Attribute.TypeId
System.TypeLoadException.ResourceId
System.Reflection.AssemblyAlgorithm.AssemblyAlgorithmAttribute.AlgorithmId
System.Runtime.Remoting.Lifetime.Lease.GetNextId()
System.Xml.Xpath.XPathNavigator.UniqueId
System.Data.OleDb.DBPropSet.PropertyId

(from http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/dcb8e08b-026a-4903-a413-7dbdda131a82/)

I guess that's why they invented intellisense...

In regards to pluralization: in my mind the s should always be lower-case.

share|improve this answer
It seems like "System.IO" is correctly while "System.Data.Common.DbDataReader" was misnamed according to the guideline - But is this widely accepted convention? – Sung Feb 27 '09 at 18:52
"Honestly, I don't think Microsoft knows what to do:" <- that is exactly the statement of mind I am in... – Sung Feb 27 '09 at 18:57

The latest guidance is "Id", for more on this and others (e.g. "Ok"), see my post on the very latest Framework Design Guidelines (2nd edition)

share|improve this answer
Let's just go with "Okay" and make everyone unhappy :) – Jon B Feb 27 '09 at 19:01
+1 Never heard of that book(Framework Design Guidelines) before. Let me check it out. Sounds like an interesting book to read. Thanks Jeff – Sung Feb 27 '09 at 19:02
Why is it UserName, FileName, but not HashTable? HashTable, Username, and Filename all make more sense to me. – Mike Feb 27 '09 at 19:19
@Mike - I agree with Jeff Moser's convention but I would like him to explain as well. Perhaps we have to buy the book? – jpierson May 11 '11 at 3:25
+1 I was just about to answer this question with reference to the same book – Sebastian K Jan 24 at 18:30

I always capitalize ID when it is an abbreviation for identifier, etc. It just looks wrong and makes me think of Freud, otherwise -- which is definitely not a good thing.

share|improve this answer
Nice downvote from the humorless... – tvanfosson Feb 27 '09 at 18:59
Easy to call others humorless, hard to realize the joke is lame. :D – jfar Feb 27 '09 at 19:05
3  
I, too, tend to think of Freud when I see Id instead of ID for the abbreviation of identifier in a variable or function name. (@jfar and tvanfosson: I don't see it as a joke, just a statement of fact.) +1 for being on the same wavelength as me (and to offset that downvote). – RobH Feb 27 '09 at 19:11
1  
When you see Io, do you think of jupiter's moon? – Daniel LeCheminant Feb 27 '09 at 19:17
1  
Actually I think of Shakespeare when I see it in SO, darn sans-serif fonts! bartleby.com/70/50007.html – tvanfosson Feb 27 '09 at 19:23
show 1 more comment

If you would care to check the dictionary, you would find that ID is not treated as an abbreviation. In fact, the form is specified as ID or I.D. there. This is probably because it came from an expression like "Identity Documentation" or "Identification Data", and was not originally taken as a short form of "Identifier". Thus the form ID is not only recommended, but is directly supported by the dictionary.

share|improve this answer
Capitalization is for 2 letters acronyms. UI, IP, etc. "Id" is an abbreviation for Identifier, so it should stay pascal cased. – Nickolaus Feb 16 at 18:15
@Nickolaus: Douglas's point is that the word ID is listed in the dictionary (confirmed at least in Merriam Webster) all capitalized, rather that as Id. – Ergwun Apr 30 at 2:38

I think that the reason some people are using 'ID' instead of 'Id' is because it is a subset of 'GUID', 'UUID' or 'UID' that are generally capitalized.

I agree that it should be 'Id' but I think that it strongly depends on the context because in some environments it might be more appropriate to use 'ID'.

So to me 'ID' is a technical term and a subset of the above or used to refer either one of these technical terms whereas 'Id' is the shorthand to any kind of identifier and in a non-technical context when you need a person to read it like in your public APIs or UML you should (in my opinion) use 'Id'.

share|improve this answer

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.