Reputation: 725
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
Reputation: 1063413
I sounds simply like a missing assembly reference to assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
Upvotes: 1