Tagged Questions
5
votes
11answers
454 views
When is optimization premature?
I see this term used a lot but I feel like most people use it out of laziness or ignorance. For instance, I was reading this article:
http://blogs.msdn.com/b/ricom/archive/2006/09/07/745085.aspx
...
5
votes
8answers
605 views
Why do Java and C# have bitshifts operators?
Is the difference between integer multiply(temporarily forgetting about division) still in favor of shifting and if so how big is the difference?
It simply seems such a low level optimization, even ...
4
votes
4answers
259 views
Creating Local variables in .Net
I just want to know that creating local variables to accept the return value of function is going to hit memory usage or performance in .Net applications , especially in ASP.Net.
say
MyObject ...
3
votes
6answers
160 views
How to test what method implementation runs faster
While the question check if input is type of string has been closed two of the answers spiked a micro-optimization question in my mind: which of the below two solutions would perform better?
Reed ...
2
votes
4answers
364 views
Which piece of code is more performant?
I have some code i'm revewing, which is used to convert some text into an MD5 Hash. Works great. It's used to create an MD5Hhash for a gravatar avatar. Here it is :-
static MD5CryptoServiceProvider ...
1
vote
4answers
566 views
Computation overhead in C# - Using getters/setters vs. modifying arrays directly and casting speeds
I was going to write a long-winded post, but I'll boil it down here:
I'm trying to emulate the graphical old-school style of the NES via XNA. However, my FPS is SLOW, trying to modify 65K pixels per ...
0
votes
3answers
71 views
Calling a method on an object a bunch of times versus constructing an object a bunch of times
I have a List called myData and I want to apply a particular method (someFunction) to every element in the List. Is calling a method through an object's constructor slower than calling the same method ...