Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
106 views

Deserializing a struct with SoapFormatter

I added a new member to an existing class that's serialized. The SoapFormatter was used on released versions, so this can't be changed. The main problem is deserializing old versions that don't have ...
0
votes
1answer
85 views

How to serialize a collection of key:string, value:object using soapformatter

I need a collection of keys and values (like a dictionary) but it needs to be serializable using the Soapformatter. Why the soapformatter? I don't know the type that has to be serialized, I only ...
0
votes
1answer
362 views

.net remoting - Problems with List<T>

I am developing a client-server application using .Net Remoting. From my server I want to return a List in response to a certain method call, however I get an exception saying that basically ...