Quelques tests de performance (de vitesse) résumant les différentes options, pas que cela compte vraiment #microoptimization (en utilisant une extension linqpad )
Options
void Main()
{
object objValue = null;
test(objValue);
string strValue = null;
test(strValue);
}
// Define other methods and classes here
void test(string value) {
new Perf<string> {
{ "coallesce", n => (value ?? string.Empty).ToString() },
{ "nullcheck", n => value == null ? string.Empty : value.ToString() },
{ "str.Format", n => string.Format("{0}", value) },
{ "str.Concat", n => string.Concat(value) },
{ "string +", n => "" + value },
{ "Convert", n => Convert.ToString(value) },
}.Vs();
}
void test(object value) {
new Perf<string> {
{ "coallesce", n => (value ?? string.Empty).ToString() },
{ "nullcheck", n => value == null ? string.Empty : value.ToString() },
{ "str.Format", n => string.Format("{0}", value) },
{ "str.Concat", n => string.Concat(value) },
{ "string +", n => "" + value },
{ "Convert", n => Convert.ToString(value) },
}.Vs();
}
Il est probablement important de souligner qu'il Convert.ToString(...)
conservera une chaîne nulle.
Résultats
Objet
- nullcheck 1,00 x 1221 ticks écoulés (0,1221 ms) [en 10 000 répétitions, 1,221E-05 ms par]
- coallesce 1,14x 1387 ticks écoulés (0,1387 ms) [en 10K répétitions, 1,387E-05 ms par]
- chaîne + 1,16 x 1415 ticks écoulés (0,1415 ms) [en 10 000 répétitions, 1,415E-05 ms par]
- str.Concat 1,16x 1420 ticks écoulés (0,142 ms) [en 10K répétitions, 1,42E-05 ms par]
- Convertir 1,58x 1931 ticks écoulés (0,1931 ms) [en 10K répétitions, 1,931E-05 ms par]
- str.Format 5,45x 6655 ticks écoulés (0,6655 ms) [en 10K reps, 6.655E-05 ms par]
Chaîne
- nullcheck 1,00 x 1190 ticks écoulés (0,119 ms) [en 10 000 répétitions, 1,19E-05 ms par]
- Convertir 1,01 x 1200 ticks écoulés (0,12 ms) [en 10 000 répétitions, 1,2E-05 ms par]
- chaîne + 1,04x 1239 ticks écoulés (0,1239 ms) [en 10K répétitions, 1,239E-05 ms par]
- coallesce 1,20x 1423 ticks écoulés (0,1423 ms) [en 10K reps, 1,423E-05 ms par]
- str.Concat 4,57x 5444 ticks écoulés (0,5444 ms) [en 10K reps, 5.444E-05 ms par]
- str.Format 5,67 x 6750 ticks écoulés (0,675 ms) [en 10K répétitions, 6,75E-05 ms par]