Is there an equivalent C# syntax for C's inline anonymous struct definition?

这一生的挚爱 提交于 2019-12-06 01:46:05

问题


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 !


回答1:


This is not possible in C#, however you can define an instance of an anonymous type like this:

var x = new { SomeField = 1, SomeOtherField = "Two" }; 

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.




回答2:


Simple answer: No, it is not possible.



来源:https://stackoverflow.com/questions/5579098/is-there-an-equivalent-c-sharp-syntax-for-cs-inline-anonymous-struct-definition

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!