In this code:
C#string result1 = $"https://token:{API_TOKEN}" + api_url + "/brands";
the refactoring "Convert to string interpolation" gives this behavior changing result
C#string actualResult = $"{$"https://token:{API_TOKEN}"}{api_url}/brands";
I expected this result
C#string expectedResult = $"https://token:{API_TOKEN}{api_url}/brands";
I attach a solution which contains this code.
Hi Richard,
Thanks for the source code. I have managed to reproduce the issue. We will notify you when we have any results.