NoviceAndNovice
NoviceAndNovice

Reputation: 725

C++ / CLI XML XmlObjectSerializer abstract class

I am using .net 3.5. In a C# project i can access XmlObjectSerializer as

System.Runtime.Serialization.XmlObjectSerializer

but in C++ / CLI project i can not able to use that class as

 System::Runtime::Serialization::XmlObjectSerializer

What is the problem? Why i can not able to reach that class under C++/CLI?

Best Wİshes

Upvotes: 1

Views: 360

Answers (1)

Marc Gravell
Marc Gravell

Reputation: 1063413

I sounds simply like a missing assembly reference to assembly:  System.Runtime.Serialization (in System.Runtime.Serialization.dll)

Upvotes: 1

Related Questions