How do I get the current date? I need to have DDMMYY in a string. I read over the docs but I don't see it in here...
Any ideas?
Printable View
How do I get the current date? I need to have DDMMYY in a string. I read over the docs but I don't see it in here...
Any ideas?
Here you go:
mystring = System.DateTime.Now.ToString("ddmmyy")
perfect! system.. shoot I didn't think to look there!