I've an question. I have a project which use System.Runtime.Serialization assembly. And I am using DataContractSerializer type from that assembly. But I found one problem. There are two assemblies:
C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETFramework\v4.0\System.Runtime.Serialization.dll
C:\Windows\Microsoft.net\Framework\v4.0.30319\System.Runtime.Serialization.dll
Both of them have the same version - v4.0.30319. The first one have 429kb size, and the second one 1037kb. I used reflector to see list of classes, and the first one doesn't have class that I need(DataContractSerializerSettings). But the second one has it.
Why there are some big difference in size and classes for that assembly? And will it be ok, if I use the second one, instead of the first?