> This seems like is should be straight forward but I'm just not getting it.
>
[quoted text clipped - 30 lines]
> private string m_strName;
> }
>> I have a very simple class (see below) which I think should be XML
>> serializable. I have this class defined in my simple form app's
>> namespace. Now I want to add an instance of this class to my Application
>> Settings.
>
> Any ideas???
Well, since no one who actually knows the answer stepped up, I'll tell you
what I do know:
If your object is serializable, you can save it in your settings.
To make an object serializable, you add the "[Serializable]" property just
before the class. I haven't had a need to do this sort of thing yet, but
my understanding is that if all the members are already serializable, and
you don't want any special handling for any of the members, then that's
all you need to do in order to make the whole class serializable.
It seems to me that those two pieces of information together should
address your question.
If not, well...I did warn you that I don't actually know the answer. :)
Pete