C
CCLeasing
I'm trying to format a string, using placeholders. I have tried the
following : -
String Time = string.Format("Time: (({0 - {1}}))", txtDate.Text,
txtTime.Text);
MessageBox.Show(Time);
The string i'm trying to achieve would look something like this : -
Time: ((1/1/06 - 12:32))
but i'm getting the error that 'input string was not in the correct
format)
can someone advise,
Many Thanks.
following : -
String Time = string.Format("Time: (({0 - {1}}))", txtDate.Text,
txtTime.Text);
MessageBox.Show(Time);
The string i'm trying to achieve would look something like this : -
Time: ((1/1/06 - 12:32))
but i'm getting the error that 'input string was not in the correct
format)
can someone advise,
Many Thanks.