What Culture should I use with StringBuilder.Append to have similar functionality to this code:
StringBuilder sb = string.empty; string str = ...; sb.Append($"{str}BLABLA\n"); Is it really possible that I get different results depending on the Culture here, as Visual Studio claims when throwing out error CA135? It seems doubtful because I'm only using a string within the string interpolation.
I'm almost tempted to simply replace the call with two calls to Append to get rid of this...
str, one with the fixed part. Suppressing the warning does not seem like a good call in case someone uses something other than a string in the interpolation in the future.