Missing dll - System.Xml.Serialization.dll

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
 
O

og

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
 
K

Kumar Gaurav Khanna [.NET MVP]

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/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top