T
tshad
I have the following code
Dim val As Int16 = 7
Dim name As String = "Mr. John"
Dim num As Double = 45.06F
Dim str As String = String.Format("Days Left : {0}. Current DataTime: {1:u}.
\n String: {2}, Float: {3}", val, DateTime.Now, name, num)
Console.WriteLine(str)
The line should break before the "String:", but it doesn't and displays
showing the "\n".
Why doesn't it break at the \n?
Thanks,
Tom
Dim val As Int16 = 7
Dim name As String = "Mr. John"
Dim num As Double = 45.06F
Dim str As String = String.Format("Days Left : {0}. Current DataTime: {1:u}.
\n String: {2}, Float: {3}", val, DateTime.Now, name, num)
Console.WriteLine(str)
The line should break before the "String:", but it doesn't and displays
showing the "\n".
Why doesn't it break at the \n?
Thanks,
Tom