How to specify culture in a C# interpolated string?

Use the conversion to FormattableString or IFormattable:

FormattableString message = $"Value is {value}";
message.ToString(specificCulture);

Know more: