How can I pass string template to function?
I`m creating general usage library.
At this point main application needs to give template for email and library must add specific value at specific place in email.
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);