benefit of string interpolation over tostring in c# code example
Example: string interpolation
const number = 42;
const message = `The number is ${number}`;
message; // => 'The number is 42'
const number = 42;
const message = `The number is ${number}`;
message; // => 'The number is 42'