What is MyAssembly.XmlSerializers.dll generated for?

后端 未结 5 1389
醉酒成梦
醉酒成梦 2020-11-29 02:24

I am working on a project which generates an assembly. I just noticed that an additional assembly *.XmlSerializers.dll is being generated. Why this file is auto generated an

5条回答
  •  攒了一身酷
    2020-11-29 02:31

    I think this is the JIT (Just in time) compilation of XML serialisers for performance reasons.

    You get the same thing with RegEx instances using the RegexOptions.Compiled option turned on.

    I'm no .NET CLR expert, sorry for lack of precise technical detail.

提交回复
热议问题