我有两节课。我在 2 类中创建了一个返回的数据表。我试图弄清楚如何在类 1 中使用这些值。我需要在类 1 中的另一个方法中传递数据表值。
//示例:在第 2 课中,我有:
public Datatable Mytable()
{
DataTable table = new DataTable();
table.Columns.Add("Column1", typeof(string));
table.Columns.Add("Column2", typeof(string));
//get values for the data row here
return table;
}
在第 1 课中,我有:
public Method1 (String A, String B)
//A and B need to represent the values in the Datatable from Class 2
{ string ab = "This is first datarow " + A + " This is second datarow " + B;
}