Alcuni test delle prestazioni (velocità) che riassumono le varie opzioni, non che importi davvero #microoptimization (utilizzando un'estensione linqpad )
Opzioni
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();
}
Probabilmente è importante sottolineare che Convert.ToString(...)
manterrà una stringa nulla.
Risultati
Oggetto
- nullcheck 1,00x 1221 tick trascorsi (0,1221 ms) [in 10.000 ripetizioni, 1.221E-05 ms per]
- coallesce 1,14 x 1387 tick trascorsi (0,1387 ms) [in 10K ripetizioni, 1,387E-05 ms per]
- stringa + 1,16 x 1415 tick trascorsi (0,1415 ms) [in 10K ripetizioni, 1,415E-05 ms per]
- str.Concat 1,16 x 1420 tick trascorsi (0,142 ms) [in 10.000 ripetizioni, 1,42E-05 ms per]
- Converti 1,58 x 1931 tick trascorsi (0,1931 ms) [in 10.000 ripetizioni, 1,931E-05 ms per]
- str.Format 5,45 x 6655 tick trascorsi (0,6655 ms) [in 10.000 ripetizioni, 6,655E-05 ms per]
Corda
- nullcheck 1,00 x 1190 tick trascorsi (0,119 ms) [in 10.000 ripetizioni, 1,19E-05 ms per]
- Converti 1,01 x 1200 tick trascorsi (0,12 ms) [in 10.000 ripetizioni, 1,2E-05 ms per]
- stringa + 1,04 x 1239 tick trascorsi (0,1239 ms) [in 10K ripetizioni, 1,239E-05 ms per]
- coallesce 1,20 x 1423 tick trascorsi (0,1423 ms) [in 10.000 ripetizioni, 1,423E-05 ms per]
- str.Concat 4,57x 5444 tick trascorsi (0,5444 ms) [in 10.000 ripetizioni, 5,444E-05 ms per]
- str.Format 5,67 x 6750 tick trascorsi (0,675 ms) [in 10.000 ripetizioni, 6,75E-05 ms per]