本文整理汇总了C#中System.Text.UTF32Encoding.GetString方法的典型用法代码示例。如果您正苦于以下问题:C# UTF32Encoding.GetString方法的具体用法?C# UTF32Encoding.GetString怎么用?C# UTF32Encoding.GetString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Text.UTF32Encoding
的用法示例。
在下文中一共展示了UTF32Encoding.GetString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetUtf32
public static string GetUtf32(string unicodeString)
{
var utf8 = new UTF32Encoding();
byte[] encodeBytes = utf8.GetBytes(unicodeString);
string decodedString = utf8.GetString(encodeBytes);
return decodedString;
}
示例2: DecodeBase64String
private string DecodeBase64String(string StrValue)
{
try
{
System.Text.UTF32Encoding objUTF32 = new System.Text.UTF32Encoding();
byte[] objbytes = Convert.FromBase64String(StrValue);
return objUTF32.GetString(objbytes);
}
catch (Exception ex)
{
VMuktiHelper.ExceptionHandler(ex, "DecodeBase64String()", "CtlSettings.xaml.cs");
return null;
}
}
示例3: UniversalStringDecode
/// <summary>
/// Provides decoding functionality in UniversalString way for a string.
/// </summary>
/// <param name="bytes">A BER encoding result of UniversalString</param>
/// <returns>The decoding result.</returns>
private static string UniversalStringDecode(byte[] bytes)
{
if (bytes == null || bytes.Length % 4 != 0)
{
throw new Asn1DecodingUnexpectedData(ExceptionMessages.DecodingUnexpectedData);
}
UTF32Encoding be = new UTF32Encoding(true, false);
return be.GetString(bytes);
}