Search Results

1
vote

What kind of prefix do you use for member variables?

A single _ used only as a visual indicator. (C#) helps to group members with intellisense. easier to spot the member variables when reading the code. …
67
votes

Hidden .NET Base Class Library Classes?

System.Diagnostics.DebuggerDisplay When you're debugging, if the class is attributed, visual studio will display the information on mouse-over. It even allows you to put in …
1
vote

Best rule for maximum function size?

quick answer: a good rule of thumb is a method that is doing too many different things, and those things aren't that related, or the different tasks in the method are at different levels o …
3
votes

Are booleans as method arguments unacceptable?

Enums can certainly make the code more readable. There are still a few things to watch out for (in .net at least) Because the underlying storage of an enum is an int, the default value will …
1
vote

Is it OK to overload ShowDialog() so that a child form returns information as an out parameter?

@Musigenesis, you really don't want to force client code to break when you change your dialog, and using an out parameter that is only sometimes valid isn't a good design. As @Daok says, when you h …
3
votes

Should you enforce constraints at the database level as well as the application level?

Typically there is always some duplication, and databases aren't just dumb repositories. db The database ensures integrity at a data level. Foreign key constraints, non null const …
3
votes

Do I always have to think about performance?

Citing Knuth's 'premature optimization .. evil' is a poor argument for writing sloppy and slow code (correct or otherwise). You need metrics to optimize. You need to think ab …