Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 12 down vote accepted

.NET version 4.0 made a big change in the way framework reference assemblies are done. Previously, the reference assembly was a simple copy of the runtime assembly, the one stored in the GAC. That however caused some painful problems. Notable is the WaitHandle.WaitOne(int) overload, it was added in the .NET 2.0 service pack 1 update. Programmers used it without noticing that it was an added method, the mscorlib assembly version number was still 2.0.0.0. But then discovered their program failed when running on an unpatched version of .NET 2.0

To prevent this kind of breakage, the .NET 4.0 reference assemblies are kept separate, in the %programfiles%\Reference Assemblies directory as you found out. And they are special assemblies, they only contain the metadata with all the IL stripped out. Which is why the assembly is so much smaller.

Microsoft now can improve the .NET 4 code and add public classes and methods without causing this kind of breakage. And have done so profusely, updates 4.01, 4.02 and 4.03 have shipped since the original 4.0 release.

The reason you are having trouble with the DataContractSerializerSetting class is thus easily explained, it just doesn't appear in the reference assembly. It got added, probably in one of those incremental updates. And you should not try, your program will break on a machine that doesn't have the update. You should wait until .NET 4.5, the version that added it to the reference assembly. You can invoke DLL Hell if you really want to.

share|improve this answer
Thanks @Hans, your answer is very useful. However now I'm worried about this question and the answer that was given to me. Could you give your opinion there on how to get this interim release 4.0.2 etc on client PCs? – Steve Mar 14 '12 at 12:47
1  
As long as you consider using a beta version of a dbase engine then you might as well go whole-hog and also use the beta version of .NET 4.5. Hopefully your customer is willing to participate as well. – Hans Passant Mar 14 '12 at 12:54
Thanks @HansPassant for your detailed answer :) – Sergey Litvinov Mar 14 '12 at 16:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.