Resource file serialization error
Hello good fellows,
I have a resource file in which I save all my controls settings.
It was OK until I did something that somehow disturbed saving of the resources.
When trying to save the file, I get a serialization exception with the error message
"control .....is not marked as serializable".
I can not read the file, as it is probably does not exist (I get reading header error).
The same saving error message is true for any control.
I made the class [Seriizable], made all controls public, but for no avail.
Attached is my method that takes care of saving. It is quite simple.
Thanks
Sam
Answers (2)
0
Use:
string[] items = fileName.Split('_');
items[0] will be the portion to the first _ and then items[1] will be the portion from the first _ to the second _.
These will exclude the underscores themselves.
Accepted 0
You could deal with that situation (or even two hyphen delimiters) by replacing this line:
string[] items = fileName.Split('_');
with this:
string[] items = fileName.Split(new char[]{'_', '-'});