Missing dll - System.Xml.Serialization.dll

  • Thread starter Thread starter Paul P
  • Start date Start date
P

Paul P

I get a CS0006 error when I reference
System.Xml.Serialization.dll

So my question is...

When I have the latest .NET Framework SDK, why don't I
have System.Xml.Serialization.dll?

.....and how can I get it?

Thanks,
Paul P
 
why are you referencing it? you should just be able to
import it..

vb
Imports System.Xml.Serialization
or
c#
using Imports System.Xml.Serialization
 
Hi!

System.Xml.Serialization namespace is contained in the System.Xml.dll
assembly, and not the System.Xml.Serialization.dll.

Regards,
Gaurav Khanna

--
----------------------------------------------------------------------------
----------
Microsoft MVP - .NET, MCSE Windows 2000/NT4, MCP+I
WinToolZone - Spelunking Microsoft Technologies
http://www.wintoolzone.com/
OpSupport - Spelunking Rotor
http://opsupport.sscli.net/
 
Back
Top