文字列テンプレートを関数に渡すにはどうすればよいですか?
一般的な使用法ライブラリを作成しています。
この時点で、メインアプリケーションは電子メールのテンプレートを提供する必要があり、ライブラリは電子メールの特定の場所に特定の値を追加する必要があります。
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);