gpt4 book ai didi

c# - 从另一个类的数组中读取数据

转载 作者:行者123 更新时间:2023-11-30 15:35:07 25 4
gpt4 key购买 nike

我需要从另一个类中的数组读取数据。我已经阅读了一些解释相同问题的线程,但无法使用我的代码...

包含示例:我需要从 Parsedata 类读取 ParticipantX 数组中的数据到 Form1 类,如我的示例所示.

如果有任何帮助,我将不胜感激。最好的情况是,如果您能帮助我提供我需要的代码。我现在被卡住了。谢谢。

public class Parsedata
{
public void ParsedataMethod()
{
...
//Neccesary data are added to this array
string[,] ParticipantX = new string[40, 4];

在同一个命名空间中,我有 Form1 类:

using Crestron.ActiveCNX;
public partial class Form1 : Form
{
ActiveCNX cnx;
cnx = new ActiveCNX();

private void SerialSend_Click(object sender, EventArgs e)
{
int number = 8;
for (int i = 1; i < number; i++)
cnx.SendSerial(i, ParticipantX[i, 1]); //
}

最佳答案

试试这个:

public class Parsedata
{
private string[,] m_ParticipantX;
public void ParsedataMethod()
{
...
m_ParticipantX = new string[40, 4];//Neccesary data are added to this array
}

public string[,] ParticipantX
{
get { return m_ParticipantX; }
}
}

using Crestron.ActiveCNX;
public partial class Form1 : Form
{
ActiveCNX cnx;
cnx = new ActiveCNX();
Parsedata data = new Parsedata();

private void SerialSend_Click(object sender, EventArgs e)
{
data.ParseDataMethod();
int number = 8;
for (int i = 1; i < number; i++)
cnx.SendSerial(i, data.ParticipantX[i, 1]); //
}
}

关于c# - 从另一个类的数组中读取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15336440/

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