In C#, can someone please inform me of the best data type that can have a string, string
combination that can be serialized
to xml
and de serialized
from xml
?
I need to be able to have a list
of this object, and the list
can also be serialized
to xml
and de serialized
from xml
.
I have tried dictionary
type, but this is causing errors when serializing
to xml.
I am using object xml
serialization
for the serialization
.
What data type should I use? Does such a data type exist?
Thanks
EDIT
I can serialize a List<string[]>
, but am wondering if another data type does exist.