Tagged Questions
2
votes
3answers
537 views
Control/variable naming conventions in ASP.NET
I think the main distinction in naming is between logic and view-related objects. You might have a variable named “UserName” in the code behind file of a page, but then also a .NET TextBox in which a ...
2
votes
7answers
201 views
Naming convention for lambdas
Pretty useless question in the grand scheme of things, but I'm curious - what do you all use for a naming convention inside your lambda expressions?
For example:
Database.TableName.Max(x => ...
1
vote
4answers
151 views
Can I create an Object like this in Ruby / Java / C#?
Could you create an object from a class named Trung.NguyenThe since NguyenThe isn't a method ?
1
vote
6answers
201 views
When, if ever, should the name of a property contain the name of the class?
public class Fruit
{
// choose one
public int Id { get; set; }
public int FruitId get; set; } // redundant or usefully more descriptive?
// choose one
public string Name { get; ...
0
votes
4answers
36 views
Boolean variable naming of price setting
I have a boolean variable that flags if a price (on an individual item) should be displayed. I started to name it "DisplayPrice", but that is really more descriptive of the price of the item to be ...
0
votes
2answers
56 views
Pascal Case in C# properties
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 ...