2维结构表

发布于 2024-11-04 17:12:53 字数 273 浏览 0 评论 0原文

在 C 中,我可以在方法中使用以下形式。

void foo() {
   struct {
      int val;
      int color;
      string desc;
   } ItemMap[] = {
      { 1, 2, "test"},
      { 2, 3, "test"},
   }

   // process tasks according to ItemMap.
}

如果我想在C#下做同样的事情,如何实现?

In C, I can use the following form inside a method.

void foo() {
   struct {
      int val;
      int color;
      string desc;
   } ItemMap[] = {
      { 1, 2, "test"},
      { 2, 3, "test"},
   }

   // process tasks according to ItemMap.
}

If I want to do the same thing under C#, how to achieve it ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

倒数 2024-11-11 17:12:53

您可以在 C# 中使用匿名类型:

var ItemMap = new[] { new { val = 1, color = 2, desc = "test" }, 
                      new { val = 2, color = 3 , desc = "test" } };

string description = ItemMap[0].desc;

但是,这会为您创建一个匿名类的一维数组,而不是结构体 - 而且它是只读的。如果您特别需要可变的结构/值类型,则必须在方法外部声明该结构。

You could use anonymous types for that in C#:

var ItemMap = new[] { new { val = 1, color = 2, desc = "test" }, 
                      new { val = 2, color = 3 , desc = "test" } };

string description = ItemMap[0].desc;

This would however create a one-dimensional array of an anonymous class for you not a struct - also it is read only. If you specifically need a struct / value type that is mutable, you will have to declare the struct outside of your method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文