gpt4 book ai didi

c# - 从函数返回匿名类型

转载 作者:IT王子 更新时间:2023-10-29 04:37:46 24 4
gpt4 key购买 nike

我能否在函数中使用匿名类型作为返回类型,然后将返回值填充到数组或某种集合中,同时向新数组/集合添加额外字段?请原谅我的伪代码...

private var GetRowGroups(string columnName)
{
var groupQuery = from table in _dataSetDataTable.AsEnumerable()
group table by new { column1 = table[columnName] }
into groupedTable
select new
{
groupName = groupedTable.Key.column1,
rowSpan = groupedTable.Count()
};
return groupQuery;

}

private void CreateListofRowGroups()
{
var RowGroupList = new List<????>();
RowGroupList.Add(GetRowGroups("col1"));
RowGroupList.Add(GetRowGroups("col2"));
RowGroupList.Add(GetRowGroups("col3"));

}

最佳答案

这是一个 very popular question .通常,由于强类型的要求,您不能返回匿名类型。但是,有一些解决方法。

  1. 创建一个简单类型来表示返回值。 (参见 herehere )。通过 generating from usage 使其变得简单.
  2. cast to the anonymous type 创建一个辅助方法使用示例实例进行转换。

关于c# - 从函数返回匿名类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7494099/

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