I have multiple words I want to replace with values, whats the best way to do this?
Example: This is what I have done but it feels and looks so wrong
Use String.Format:
const string message = "Dear {0}, Please call {1} to get your {2} from {3}"; string name = "Bob"; string callName = "Alice"; string thingy = "Book"; string thingyKeeper = "Library"; string customMessage = string.Format(message, name, callName, thingy, thingyKeeper);