C# 的类似 Python 的字典声明?
在 Python 中可以这样做:
d = {1 : 'Hello', 2 : 'World'}
在 C# 中它更冗长:
Dictionary<int, string> d = new Dictionary<int, string>();
d.Add(1, 'Hello');
d.Add(2, 'World');
我怎样才能使它不那么冗长?
In Python one can do:
d = {1 : 'Hello', 2 : 'World'}
In C# it's more verbose:
Dictionary<int, string> d = new Dictionary<int, string>();
d.Add(1, 'Hello');
d.Add(2, 'World');
How can I make this less verbose?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用集合初始值设定项语法(以及使用
var
隐式键入):此代码实际上将被编译直到你上面的代码。请注意,您(不幸的是)无法省略构造函数或泛型类型参数。
不太Pythonic,但已经实现了!
You can use the collection initializer syntax (and implicit typing with
var
):This code will actually be compiled down to the code you have above. Note that you (unfortunately) can't elide the constructor or the generic type arguments.
Not quite Pythonic, but getting there!