Question

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) { }
Was it helpful?

Solution

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.

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top