Tagged Questions
2
votes
3answers
574 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
209 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
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
39 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 ...