Hello - I am pretty new to this newsgroup. I am looking for a way to
format durations according to locale.
Is there any locale-specific duration format charts that anyone has
successfully used with .NET? Am I looking for something that is
redundant/ handled by .NET?
...
more >>
If you look at the MSDN sample for Encoding.GetEncoding Method (Int32) it
shows the below sample code..
// Get a UTF-32 encoding by codepage.
Encoding e1 = Encoding.GetEncoding( 65005 );
// Get a UTF-32 encoding by name.
Encoding e2 = Encoding.GetEncoding( "utf-32" );...
more >>