cjard
Well-known member
- Joined
- Apr 25, 2006
- Messages
- 7,081
- Programming Experience
- 10+
In another thread I raised that point that i format a string like this:
but I format a date like this:
Can i format a number like that too?
Is there a resolution to this inconsistency?
VB.NET:
String.Format("the number is {0}", myNumber)
but I format a date like this:
VB.NET:
myDate.ToString("yyyy MM dd")
Can i format a number like that too?
VB.NET:
myNumber.ToString("the number is ... ????")
Is there a resolution to this inconsistency?
Last edited by a moderator: