Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这可能很容易,但我卡住了!
我确实有一门课可以为我创建一个命令,例如:
如您所见,此编码将返回给我 bCommand!
现在我有一个按钮功能,我应该调用这个 bCommand 并将其分配为如下值:
所以我得到了 Bcommand 在当前上下文中不存在的错误我正在寻找任何建议如何解决问题。
您需要将Encode方法的结果分配给变量。
Encode
private void btnModel_Click(object sender, EventArgs e) { byte[] bCommand = Encode("C11", ""); WriteData(bCommand); // bCommand will now exist in this context }