G
Guest
The function must return a IEnumerable object with one row (any data). I have
the following code. Any less cost way?
IEnumerable^ udf()
{
DataTable dt;
dt.Columns->Add("Test");
dt.Rows->Add(1);
return dt.Rows;
}
the following code. Any less cost way?
IEnumerable^ udf()
{
DataTable dt;
dt.Columns->Add("Test");
dt.Rows->Add(1);
return dt.Rows;
}