In the c programming language,
I can do
printf("%d\n", value);
But in C #, how can I do this? For example, the string "Good% s everyone"
I want to replace% s with a variable. Is there any solution other than
str.Replace("%s","good morning");
source share