hi
in my C# program i receive date & time like this: DateTime.Now
and i get: 19/09/2010 20:10:30
because my region is: Hebrew (Israel)
but What happens if I'll install my program on computer with region English (united states)
I'll probably get an error because the format is MM/dd/yyyy hh:mm:ss
my question is, How to ensure that i Always get the date in dd/MM/yyyy hh:mm:ss
format ?
in any type of region ?
thank's in advance