gpt4 book ai didi

c# 不能从静态函数中引用

转载 作者:太空宇宙 更新时间:2023-11-03 22:21:12 25 4
gpt4 key购买 nike

这里是 c# 新手。

似乎这个用户为我的问题提供了一个很好的解决方案:

serialport error

但我不知道如何编写他建议的代码。你能帮忙吗?

最佳答案

这将编译正常。当然,您必须提供 thePort 真实设置。

namespace csWinFormsTest
{
public partial class Form1 : Form
{
static System.IO.Ports.SerialPort thePort;
public Form1()
{
InitializeComponent();
thePort = new System.IO.Ports.SerialPort("COM1");
}

static void fcn()
{
MessageBox.Show(thePort.PortName);
}
}
}

关于c# 不能从静态函数中引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3034467/

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