C#using System;
namespace ConsoleApp
{
class TestClass
{
void Print(string firstName, string lastName)
{
var text = $"First name: {firstName} \r\n" +
$"Last name: {lastName}";
Console.Write(text);
}
}
}
Code Cleanup - The “Convert to string interpolation” rule throws an exception when the code contains a concatenation of interpolated strings
Answers approved by DevExpress Support
We have addressed the issue described in this ticket and will include a fix in our next maintenance update. Should you need to apply our fix prior to official release, you can request a hotfix here.
Note: Hotfixes may be unavailable for betas/updates set for release within a week.
- v20.2.4Download Official Update