I need to be able to make a textbox string take from variables and put the variables into a string.
textBoxEmailTemplateUT.Text = "The documents are as follows: FileNameHere ► {TotalPanelCountUtah} ► {TotalkWUtah} ► ElectricalUsageOffsetHere InformationAboutTheSystemHere If There are any questions or concerns, please reply to this email. Regards YourNameHere");
This is suppose to be a type of email template after someone does a few calculations in the other code (not displayed). The {TotalPanelCountUtah}
and {TotalkWUtah}
are both double variables that I need to be put into the string in the textbox. Some assistance would be appreciated.