32
votes
Why is it considered a bad practice to omit curly braces?
If it's something small, write it like this:
if(foo()) bar();
If it's long enough to break into two lines, use braces.
…
0
votes
Interface naming convention
I don't really like this convention. I understand that it helps out with the case when you have an interface and an implementation that would have the same name, but I just find it ugly. I'd still …
1
vote
Which ORM is the best when using Stored Procedures
Since you've got a DBA writing the sprocs, I would think the best thing to do would be to work closely with him to figure out how to map the tables to objects, and how to structure the database so …
0
votes
Multiprocessor and Performance
With that many threads running concurrently, you're going to have to be really careful to get around issues of threads fighting with each other to access your data. Read up on …
0
votes
Could managed code (specifically .NET) ever become ‘unmanaged’?
It certainly could, but the real question is why? I mean, sure, it can be slow(er), but most of the time any major differences in performance come down to design problems (wrong algorithms, thread …
1
vote
What do fellow .NET developers think about the conditional operator?
Why not do something more like this?
public string FormattedFileName
{
get
{
return string.Format(
"{0}_{1}_{2}_{3}.xls",
DateTime.Now.Mont …
1
vote
Why would you want to use C# if its slower than C++?
The people you talked to don't know what they are talking about. C# is a very similar language to Java, all told; it has most of the same benefits and drawbacks. The way it all works is pretty simi …
2
votes
Static class vs instanced class
If a class doesn't maintain any state, doesn't have any instance methods, and could be implemented entirely with class methods, I usually take a long hard look at whether its behaviors would in fac …
