I18N: Does Time always come after Date?
Posted
by Ian Boyd
on Stack Overflow
See other posts from Stack Overflow
or by Ian Boyd
Published on 2010-03-12T21:26:22Z
Indexed on
2010/03/12
21:37 UTC
Read the original article
Hit count: 507
Does the time always come after the date, with a space in between, in every culture on earth?
i see that Microsoft FCL assumes that it does:
public string get_FullDateTimePattern()
{
if (this.fullDateTimePattern == null)
{
this.fullDateTimePattern = this.LongDatePattern + " " + this.LongTimePattern;
}
return this.fullDateTimePattern;
}
Is this an assumption i can make in every development language for every culture?
© Stack Overflow or respective owner