Use String Interpolation

This commit is contained in:
TheBestPessimist 2023-03-08 12:13:08 +02:00 committed by TheBestPessimist
parent 9bc6a4e072
commit 3cecf5b302

View file

@ -297,7 +297,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search
private static string addScoreInDebug(int score)
{
#if DEBUG
return " ➡️ " + score;
return $" ➡️ {score}";
#else
return "";
#endif