関数を作成しましたが、この関数は新しい文字列ではなく古い文字列を返します。古い文字列で何かをしたときに新しい文字列を返す方法がわかりません
例:
public string TestCode(string testString)
{
// Here something happens with the testString
//return testString; <-- i am returning still the same how can i return the new string //where something is happened with in the function above
}