C 的内联匿名结构定义是否有等效的 C# 语法?
问候溢出者,
我知道在 C 中我们可以定义一个与变量声明内联的结构,以便结构类型特定于该变量。这不是单独定义类型,然后将变量声明为该结构类型。这在 C# 中可能吗?
感谢 !
Greetings Overflowers,
I know in C we can define a struct inline with the variable declaration so that the struct type is specific to this variable. This is instead of defining the type alone then declaring the variable to be of that struct type. Is this possible in C#?
Thank !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这在 C# 中是不可能的,但是您可以像这样定义匿名类型的实例:
这实际上是相同的,为您提供特定于该变量的类型的实例,并且不能在该变量的范围之外使用。
This is not possible in C#, however you can define an instance of an anonymous type like this:
This would effectively be the same, giving you an instance of a type that is specific to that variable and cannot used outside the variable's scope.
简单的回答:不,这是不可能的。
Simple answer: No, it is not possible.
这没有帮助吗?
Would this not help ?