c# – 匿名类型列表?

前端之家收集整理的这篇文章主要介绍了c# – 匿名类型列表?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要创建一对/三元组的东西并存储在某个地方.我该怎么做?

我试过了:

for (int i = 0; i < 100; i++)
{
    var item=new { a=i,b="lala",c=4.5m}; //anonymous type
}

但后来我想:列出< what>?

我可以使用动态,但我想要Intellisense.

(我也可以使用Tuple< int,string,decimal>但是如果我已经拥有了我需要的东西(= new {a = i,b =“lala”,c = 4.5m};),我为什么要使用其他类型(元组)?)

这有什么解决方案吗?

解决方法

您可以使用类型推断
var items = Enumerable.Range(0,100)
                      .Select(i => new { a=i,c=4.5m })
                      .ToList(); // not necessary (you can use IEnumerable)
原文链接:https://www.f2er.com/csharp/98463.html

猜你在找的C#相关文章