What is a .NET assembly build?

After searching the website, I post this question. I know that, by default, assemblies are “culture neutral”, and you can create satellite assemblies with only resources (and no code) with culture information and place them in the same folder as the culture name (that is, en- us) But the question is what is culture? Some concrete examples in real life will help.

+5
source share
2 answers

On MSDN, this includes things like names for culture, a recording system, the calendar used, and formatting for dates and sort strings .

. .

, (en-GB) (en-US) (en-CA) (en-AU) , , ( / , ). , -, (ru-RU). , , radix, , (MDY DMY) ..

+4

dd/mm/yyyy mm/dd/yyy

EUR1.500,00 $1,500.00

.

- , ,

, , DateTime.Now.ToString("d");

, .

DateTime.Now.ToString("d",_currentUser.Culture);

.net this. , .

+2

All Articles