C 的内联匿名结构定义是否有等效的 C# 语法?

发布于 2024-10-30 14:32:46 字数 110 浏览 0 评论 0原文

问候溢出者,

我知道在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

总以为 2024-11-06 14:32:46

这在 C# 中是不可能的,但是您可以像这样定义匿名类型的实例:

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

这实际上是相同的,为您提供特定于该变量的类型的实例,并且不能在该变量的范围之外使用。

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.

苍白女子 2024-11-06 14:32:46

简单的回答:不,这是不可能的。

Simple answer: No, it is not possible.

苍暮颜 2024-11-06 14:32:46

这没有帮助吗?

(string, string, int) retVal;
retVal.Item1 = "A String";
retVal.Item2 = "Another String"
retVal.Item3 = 4;

Would this not help ?

(string, string, int) retVal;
retVal.Item1 = "A String";
retVal.Item2 = "Another String"
retVal.Item3 = 4;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文