|
I designed a user control which has a property of DataSet type. When this control is used on a form, its DataSet property is serialized into the form's resx file. How can I prevent such a property from being serialized in a form's resx file. The problem is that when the version of the assembly which contains the user control is changed, and I try to build another assebmly with a form which contains this user control, I have the following exceptions error: Invalid Resx file. Could not load type MyDataSet, Version=1.0.0.1, Culture=neutral, PublicKeyToken=359090d86b1f7bd1 which is used in the .RESX file. Ensure that the necessary references have been added to your project. |