空引用异常未处理 C#

发布于 2024-09-12 05:37:18 字数 959 浏览 2 评论 0原文

private void StartReadInlay2()
    {
        byte[] cSN = new byte[8];           
        byte[] sw12 = new byte[2];
        string strsw12 = "", errdes = "", result = "";

        test1_2 = new Initialisation();

        test1_2.logmode = Convert.ToInt32(ConfigurationSettings.AppSettings["LogMode"]);
        test1_2.iChipType = GetChipType(lblChipType.Text.Trim());

        //--initialise test
        result = test1_2.Initialise(1, **configXML.fnSamSlot**, configXML, ref cSN, ref sProgress1_2, ref lProcess1_2, ref sw12, ref errdes);
        scSN1_2 = Hex.ToHexString(test1_2.chipID);
        strsw12 = Hex.ToHexString(sw12);

        if (strsw12.Equals("0000"))
            errInlay1_2 = result.ToString();
        else
            errInlay1_2 = result.ToString() + strsw12;

        lProcess1_2 = 2;

        if(!errInlay1_2.Equals(""))
            StatusInlay1_2 = false;
        else
            StatusInlay1_2 = true;
    }
private void StartReadInlay2()
    {
        byte[] cSN = new byte[8];           
        byte[] sw12 = new byte[2];
        string strsw12 = "", errdes = "", result = "";

        test1_2 = new Initialisation();

        test1_2.logmode = Convert.ToInt32(ConfigurationSettings.AppSettings["LogMode"]);
        test1_2.iChipType = GetChipType(lblChipType.Text.Trim());

        //--initialise test
        result = test1_2.Initialise(1, **configXML.fnSamSlot**, configXML, ref cSN, ref sProgress1_2, ref lProcess1_2, ref sw12, ref errdes);
        scSN1_2 = Hex.ToHexString(test1_2.chipID);
        strsw12 = Hex.ToHexString(sw12);

        if (strsw12.Equals("0000"))
            errInlay1_2 = result.ToString();
        else
            errInlay1_2 = result.ToString() + strsw12;

        lProcess1_2 = 2;

        if(!errInlay1_2.Equals(""))
            StatusInlay1_2 = false;
        else
            StatusInlay1_2 = true;
    }

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

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

发布评论

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

评论(1

魂牵梦绕锁你心扉 2024-09-19 05:37:18

对于初学者来说,您的整个代码示例都是用 C# 编写的,如果您尝试编写 VB.NET 应用程序,肯定会崩溃。

well for starters your entire code example is in C# and will definitely blow up if you're trying to write a VB.NET application.

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