Culture-Sensitive C# Property
using System.Text
Encoding.UTF8;
Internationalization (I18n) Property Overview
Returns an encoding for the UTF-8 format.
See Microsoft's
MSDN online documentation for more information.
I18n Issues
Use of this property probably does not pose an I18n problem.
Globalyzer detects
it by default because during the internationalization process it is important that you
are aware of all of the places in your code where you are performing character encoding
conversions. Further, UTF-8 is different from the form of Unicode used by C# internally
(UTF-16, a two-byte Unicode encoding). UTF-8 is the recommended character encoding to use for
multilingual web pages.
UTF-8 encodes Unicode characters with a
variable number of bytes per character.
This encoding is optimized for the lower 127 ASCII characters, yielding an efficient
mechanism to encode English in an international way. The UTF-8 identifier is the
Unicode byte order mark, hexadecimal 0xFEFF, which is represented in UTF-8 as
hexadecimal 0xEF 0xBB 0xBF. The byte order mark is used to distinguish UTF-8
text from other encodings.
If, once you have examined use of the Encoding.UTF8 property,
you determine that it does not pose I18n problems, you can
use Globalyzer's Ignore Comment
functionality to ensure that it isn't picked up in a subsequent scan.
C# Encoding Information
|