I\'m building an application where I should capture several values and build a text with them: Name, Age, etc.
Name
Age
The output will be a plain
When using literal strings (start with @") this might be easier
char tab = '\u0009'; string A = "Apple"; string B = "Bob"; string myStr = String.Format(@"{0}:{1}{2}", A, tab, B);
Would result in Apple:Bob
Apple:Bob