Pergunta

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 ?

Foi útil?

Solução

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/

Outras dicas

Visual Studio 2010 Premium and Ultimate have performance profiling tools.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top