I am writing some code in Visual Basic.net and have a question.
If I have a long number, that is larger than 1000, how can I format this value to be 1,000 (with a co
Using $ notation:
$
int myvar = 12345; Console.WriteLine($"Here is my number: {myvar:N0}");