-
Notifications
You must be signed in to change notification settings - Fork 11
FL0014
bagley2014 edited this page Nov 12, 2021
·
1 revision
Interpolated strings should only be used when there's at least one value being interpolated.
// unnecessarily verbose
string helloWorld = $"hello world";
string helloWorld = $@"hello world";
// preferred
string helloWorld = "hello world";