Search Results

8
votes

Database, Table and Column Naming Conventions?

No. A table should be named after the entity it represents. Person, not persons is how you would refer to whoever one of the records represents. Again, same thing. The column FirstNa …
1
vote

Best way to access a control on another form in c#?

@Dylan: I got to agree with rob on this one. Don't couple the forms together, but let them sort it out via events. @Ed: Please, please don't pass a form down to a child class. This gives …
0
votes

Best way to use a property to reference a Key-Value pair in a dictionary

When you only use a magic string in one context, like you do, I think it's alright. But if you ever need to use the key in another part of the class, go const. …
1
vote

How do you define a Single Responsibility?

If you end up with MethodA that uses MemberA and MethodB that uses MemberB and it is not part of some concurrency og versioning scheme, …
6
votes

Is if(TRUE) a good idea in C?

You probably want to create a new function for that scope. If it truly needs to have it's own scope, it's probably a separate logical function anyway. …