在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
本文整理汇总了C#中System.Text.UTF32Encoding类的典型用法代码示例。如果您正苦于以下问题:C# UTF32Encoding类的具体用法?C# UTF32Encoding怎么用?C# UTF32Encoding使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。 UTF32Encoding类属于System.Text命名空间,在下文中一共展示了UTF32Encoding类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。 示例1: Main
开发者ID:.NET开发者,项目名称:System.Text,代码行数:53,代码来源:UTF32Encoding 输出: Decoding with error detection: System.Text.DecoderFallbackException: Unable to translate bytes [FF][D8][FF][01] at index 20 from specified code page to Unicode. at System.Text.DecoderExceptionFallbackBuffer.Throw(Byte[] bytesUnknown, Int32 index) at System.Text.DecoderExceptionFallbackBuffer.Fallback(Byte[] bytesUnknown, Int32 index ) at System.Text.DecoderFallbackBuffer.InternalFallback(Byte[] bytes, Byte* pBytes) at System.Text.UTF32Encoding.GetCharCount(Byte* bytes, Int32 count, DecoderNLS baseDeco der) at System.Text.UTF32Encoding.GetString(Byte[] bytes, Int32 index, Int32 count) at Example.PrintDecodedString(Byte[] bytes, Encoding enc) Decoding without error detection: Decoded string: zăǽβ� 示例2: Main
开发者ID:.NET开发者,项目名称:System.Text,代码行数:37,代码来源:UTF32Encoding 输出: Original string: This string contains two characters with codes outside the ASCII code range: Pi (π) and Sigma (Σ). Encoded bytes: [54][00][00][00] [68][00][00][00] [69][00][00][00] [73][00][00][00] [20][00][00][00] [73][00][00][00] [74][00][00][00] [72][00][00][00] [69][00][00][00] [6E][00][00][00] [67][00][00][00] [20][00][00][00] [63][00][00][00] [6F][00][00][00] [6E][00][00][00] [74][00][00][00] [61][00][00][00] [69][00][00][00] [6E][00][00][00] [73][00][00][00] [20][00][00][00] [74][00][00][00] [77][00][00][00] [6F][00][00][00] [20][00][00][00] [63][00][00][00] [68][00][00][00] [61][00][00][00] [72][00][00][00] [61][00][00][00] [63][00][00][00] [74][00][00][00] [65][00][00][00] [72][00][00][00] [73][00][00][00] [20][00][00][00] [77][00][00][00] [69][00][00][00] [74][00][00][00] [68][00][00][00] [20][00][00][00] [63][00][00][00] [6F][00][00][00] [64][00][00][00] [65][00][00][00] [73][00][00][00] [20][00][00][00] [6F][00][00][00] [75][00][00][00] [74][00][00][00] [73][00][00][00] [69][00][00][00] [64][00][00][00] [65][00][00][00] [20][00][00][00] [74][00][00][00] [68][00][00][00] [65][00][00][00] [20][00][00][00] [41][00][00][00] [53][00][00][00] [43][00][00][00] [49][00][00][00] [49][00][00][00] [20][00][00][00] [63][00][00][00] [6F][00][00][00] [64][00][00][00] [65][00][00][00] [20][00][00][00] [72][00][00][00] [61][00][00][00] [6E][00][00][00] [67][00][00][00] [65][00][00][00] [3A][00][00][00] [20][00][00][00] [50][00][00][00] [69][00][00][00] [20][00][00][00] [28][00][00][00] [A0][03][00][00] [29][00][00][00] [20][00][00][00] [61][00][00][00] [6E][00][00][00] [64][00][00][00] [20][00][00][00] [53][00][00][00] [69][00][00][00] [67][00][00][00] [6D][00][00][00] [61][00][00][00] [20][00][00][00] [28][00][00][00] [A3][03][00][00] [29][00][00][00] [2E][00][00][00] Decoded string: This string contains two characters with codes outside the ASCII code range: Pi (π) and Sigma (Σ). 示例3: Main
开发者ID:.NET开发者,项目名称:System.Text,代码行数:52,代码来源:UTF32Encoding 输出: Original string: This Unicode string has 2 characters outside the ASCII range: Pi (π), and Sigma (Σ). The encoded string has 340 bytes. Wrote 344 bytes to the file. String read using StreamReader: This Unicode string has 2 characters outside the ASCII range: Pi (π), and Sigma (Σ). Decoded bytes from binary file: This Unicode string has 2 characters outside the ASCII range: Pi (π), and Sigma (Σ). 注:本文中的System.Text.UTF32Encoding类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论