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