如何在不同类中传递结构数组
小弟在Class1中定义了一个结构数组str,代码如下,现在需要在Class2中调用这个结构数组应如何实现。谢谢class Class1
{
public struct test_str
{
public double j;
public int i;
}
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
//
// TOD Add code to start application here
//
double [] a=new double []{1.0,2.0,1.4,1.8,1.7,1.3,1.71,1.13};
test_class d=new test_class ();
test_str [] str=new test_str [a.Length ];
for (int i1=0;i1<a.Length ;i1++)
{
str[i1].j=a[i1];
str[i1].i =0;
}
}
}