I have an app that is in .NET 2.0 C#. But it uses components for .NET
1.1 that handle remoting, etc.
When I run the app I get the following runtime error:
[SerializationException] Possible Version mismatch. Type
System.Globalization.CompareInfo has 2 members, number of members
deserialized is 3.
Is there anyway to get this to work outside of converting the 1.1
components to .NET 2.0?
Thanks.
On May 31, 5:16 pm, "Don Gollahon" <don.golla...@nospam.acs-inc.com>
wrote:
> I have an app that is in .NET 2.0 C#. But it uses components for .NET
> 1.1 that handle remoting, etc.
[quoted text clipped - 13 lines]
>
> Don Gollahon
Probably your client and server are using the CompareInfo class from
differents framework versions.
If I were you, I would use the AppDomain.CurrentDomain.GetAssemblies()
method to see the assemblies' versions loaded on client and server.