如何将字符串模板传递给函数?
我正在创建通用使用库。
此时主应用程序需要为电子邮件提供模板,并且库必须在电子邮件的特定位置添加特定值。
void SomeFunction(string Template)
{
string OtherString = "This text is inserted";
string result - how to set the value of this string - Some text This text is inserted aa?
}
string Template = "Some text {need insert here} aa";
SomeFunction(Template);