I am building an app to suggest dates (romantic dates, not almenac dates) based on inputs by the user. In the end, I want to output the inputs into a richTextBox and format it to look something like:
Your date:
blablablablabla
Now all posts I’ve seen about this talk about formatting text you can predict. I would like to be able to make a string and format it then and there like:
string text = "**Your Date:**nblablablablabla";
Is there any way to do this? Since I can’t format specific bits of text when I don’t know what the text will be.