質問

Which is more efficient, "data.Length==0" or "data==string.Empty"?

in this question there was an answer which describes execution times.

For Javascript : I know there is a site called http://jsperf.com/

what about c# site ? is there any ?

役に立ちましたか?

解決

I don't know of a site, but I recently discovered that you can create a VS 2010 performance profiling session against a single unit test. Makes it very easy to quickly test isolated pieces of functionality. It's nearly as quick as pasting your code into a website and getting results, and you can get extremely detailed results (probably far better than an online solution, due to the massive amount of analysis VS is performing against the sampled data).

FWIW, there is an online version of a c# IDE: http://www.coderun.com/ide/

他のヒント

Visual Studio 2010 Premium and Ultimate have performance profiling tools.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top