c# - How to change DateTimeFormatInfo.CurrentInfo AbbreviatedDayNames collection -



c# - How to change DateTimeFormatInfo.CurrentInfo AbbreviatedDayNames collection -

how alter datetimeformatinfo.currentinfo abbreviateddaynames collection. want utilize mine, tues instead of tue. , when utilize tostring("ddd") want see tue.

is possible in c#?

you may in fashion

cultureinfo cinfo = cultureinfo.createspecificculture("en-en"); cinfo.datetimeformat.abbreviateddaynames = new string[]{"suns","mon","tues", "weds","thursday","fries","sats"};

now assign current civilization , should go

c# asp.net asp.net-mvc

Comments

Popular posts from this blog

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -

actionscript 3 - Flex: moving a point with rotation doesnt change the point XY? -