Hello... this is my first post in any coding forums. This is a great idea. Newbie here.
In a console application, it's common to write a string as follows:
string str = "The name of the author is {0}", vName;
Using the {0} syntax does not seem to work in a windows form when assigning a string to a label.txt , for instance.
Is there any way to use this syntax in a windows form?
mark

