gpt4 book ai didi

C# - 在 Windows 7 Phone 中将 byte[] 转换为 String

转载 作者:行者123 更新时间:2023-11-30 13:34:08 25 4
gpt4 key购买 nike

嗨我正在尝试使用以下代码获取 Windows 7 手机的设备 ID

 byte[] result = null;
String id = null;
object uniqueId;
if (DeviceExtendedProperties.TryGetValue("DeviceUniqueId", out uniqueId))
result = (byte[])uniqueId;

问题是我需要在字符串中得到这个结果。谁能告诉我该怎么做?最好的问候

最佳答案

string myString = Convert.ToBase64String(result);

此功能在windows phone 7平台可用

http://msdn.microsoft.com/en-us/library/dhx0d524(VS.95).aspx

如果您再次需要字节数组,只需像这样请求即可。

byte[] byteArray = Convert.FromBase64String(myString);

编辑:Curt 提供了转换回字节数组的正确方法

关于C# - 在 Windows 7 Phone 中将 byte[] 转换为 String,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4052735/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com