English 中文(简体)
为什么以匿名类型检索财产名称得出以下结果?
原标题:Why does retrieving the property name on a anonymous type give the following result?

我的一个初级同事 设法写出了非常恐怖的代码

printJob.Type = item[LocalFunctions.GetName(new { printJob.Type })].ToString();

 public static string GetName<T>(T item) where T : class
    {
        try
        {
            return typeof(T).GetProperties()[0].Name;
        }
        catch (Exception ex)
        {
            return null;
        }
    }

What is you gues what will GetName will output? It will output "Type"! I just don t get how this is possible. My first thought is that MS will create an anonymous type with property that has the same name as the property from which the value came from (compiler magic?). As this cannot possibly be a supported feature, I advised my junior co-worker to not use things he cannot understand.

但这样问题就没有了:这怎么可能呢?

最佳回答

匿名型号 : 以下列名称命名的财产名称,除非另有说明:

If you do not specify member names in the anonymous type, the compiler gives the anonymous type members the same name as the property being used to initialize them.

http://msdn.microsoft.com/en-us/library/bb397696.aspx" rel="no follow">http://msdn.microsoft.com/en-us/library/bb397696.aspx

编译者然后在编译时间对通用类型进行推算 - 所以 typeof(T) 有效 。 它得到全力支持, 即使代码是脆弱的 。 当某人重构属性的名称时会怎样?

我亦表示, 向人们提出有关你无法回答的话题的建议是不明智的-这是许多网站www.thedailywtf.com文章的源头;

我个人还是会删除这个内容, 而不是假设财产名称总是一样。

问题回答

s 编译者( 不是 MS) 在创建匿名类型时所做的。 它使用所提供参数的类型、 名称和顺序来构建新类型 。 这是完全支持的, 并打算这样做, 因此没有理由不使用它 。

汇编器拥有所有可用的信息来进行此操作。 它会看到您用于初始化的属性的名称和类型( 如 < code> printJob. Type ), 并且可以使用这些信息为您生成匿名类型 。

See here for more information:
http://msdn.microsoft.com/en-us/library/bb397696.aspx





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签