C# 2.0 中的 StringToByteArray() 抛出异常

发布于 2024-11-10 06:56:18 字数 620 浏览 4 评论 0原文

我正在VS2005上练习StringToByteArray()。但抛出异常。您能告诉我更多相关信息吗?

异常警报 **mscorlib.dll 中发生类型为“System.FormatException”的未处理异常

附加信息:找不到任何可识别的数字。**

public static byte[] StringToByteArray(String hex)
    {
        int NumberChars = hex.Length;
        byte[] bytes = new byte[NumberChars / 2];
        for (int i = 0; i < NumberChars; i += 2)
            // exception here
            bytes[i / 2] = Convert.ToByte(hex.Substring(i, 2), 16);
        return bytes;
    }

    static void Main()
    {
            byte[] myByte = new byte[2];
        myByte = StringToByteArray("0x0");
    }

I am practicing StringToByteArray() on VS2005. But throw exception. Could you please tell me more information about it?

Exception alert **An unhandled exception of type 'System.FormatException' occurred in mscorlib.dll

Additional information: Could not find any recognizable digits.**

public static byte[] StringToByteArray(String hex)
    {
        int NumberChars = hex.Length;
        byte[] bytes = new byte[NumberChars / 2];
        for (int i = 0; i < NumberChars; i += 2)
            // exception here
            bytes[i / 2] = Convert.ToByte(hex.Substring(i, 2), 16);
        return bytes;
    }

    static void Main()
    {
            byte[] myByte = new byte[2];
        myByte = StringToByteArray("0x0");
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心奴独伤 2024-11-17 06:56:18

您需要从传入的字符串开头删除“0x”,或者使用 int i = 2; 启动 for 循环。您还在方法中分配数组。您也不需要在 Main 中执行此操作。

You either need to drop the "0x" from the start of the string you pass in, or start your for loop with int i = 2;. Also you're allocating the array in your method. You don't need to do it Main as well.

装纯掩盖桑 2024-11-17 06:56:18

好吧,你有可能出现被零除的异常...

修复该问题后,你需要通过确保你的字符串以 0x 开头来继续输入验证,然后在进行转换时跳过前缀。

Well, you have the possibility of a divide by zero exception...

After you fix that, you need to continue your input validation by ensuringing that your string starts with 0x and then skip the prefix when you do your conversion.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文