C# 匿名类型问题

发布于 2024-11-26 21:27:00 字数 577 浏览 3 评论 0原文

在下面的代码中,为什么变量 c2 和 c3 是不同的匿名类型?

预先感谢您的任何建议和...干杯!

namespace ConsoleApplication5
{
    class Program
    {
        static void Main(string[] args)
        {
            var c1 = new Customer { Name = "Mark", Country = "USA" };

            var c2 = new { c1.Name, c1.Country };   //"<>f__AnonymousType0`2"
            var c3 = new { c1.Country, c1.Name };   //"<>f__AnonymousType1`2"
        }
    }

    public class Customer
    {
        public string Name { get; set; }
        public string Country { get; set; }
    }
}

In the following code why are the variables c2 and c3 of a different anonymous type?

Thanks in advance for any advice and ... cheers !

namespace ConsoleApplication5
{
    class Program
    {
        static void Main(string[] args)
        {
            var c1 = new Customer { Name = "Mark", Country = "USA" };

            var c2 = new { c1.Name, c1.Country };   //"<>f__AnonymousType0`2"
            var c3 = new { c1.Country, c1.Name };   //"<>f__AnonymousType1`2"
        }
    }

    public class Customer
    {
        public string Name { get; set; }
        public string Country { get; set; }
    }
}

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

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

发布评论

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

评论(1

人间☆小暴躁 2024-12-03 21:27:00

因为您以不同的顺序初始化了它们的属性。

如果您以相同的顺序初始化它们,它们只会被编译为相同的匿名类型。来自关于匿名类型的 MSDN 文档:

如果同一程序集中的两个或多个匿名类型具有相同数量和类型的属性,且顺序相同,则编译器会将它们视为相同类型。

Because you initialized their properties in different orders.

They'll only be compiled to the same anonymous type if you initialize them in the same order. From the MSDN docs on anonymous types:

If two or more anonymous types in the same assembly have the same number and type of properties, in the same order, the compiler treats them as the same type.

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