我可以从匿名类定义数组或列表吗?
我可以从匿名类定义数组或列表吗?
像这样:
persons = new ... []
{
new { ID = 1, Name = "Name1"},
new { ID = 2, Name = "Name2"}
}
Can I define an array or a list from anonymous class?
like this:
persons = new ... []
{
new { ID = 1, Name = "Name1"},
new { ID = 2, Name = "Name2"}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您只需要隐式键入
persons
变量,并从数组创建语句中删除类型说明符。Yes, you'll just need to type the
persons
variable implicitly and remove the type specifier from the array creation statement.