DateTime now = DateTime.Now; // { for Feb 9, 2006 }
string test = now.ToString("m m");
And I get 42 ?? what does this mean ?
For
string test = now.ToString("y yyydd");
test = "200609" ..
but
string test = now.ToString("y yyymmdd");
test = "20064209" .. I was expecting 20060209
--
Andrew
string test = now.ToString("m m");
And I get 42 ?? what does this mean ?
For
string test = now.ToString("y yyydd");
test = "200609" ..
but
string test = now.ToString("y yyymmdd");
test = "20064209" .. I was expecting 20060209
--
Andrew
Comment