How to serialize a multi-dimesional string array using xmlserializer

  • Thread starter Thread starter DanielGifford
  • Start date Start date
D

DanielGifford

Hi-

Does anyone know, or better yet, have some example code, how to
serialize a mutil-dimensional string array in c# using the
xmlserializer? IE: string[,].

Thanks

-Dan
 
Multi-dimensional arrays are not supported even on the desktop. What is it
you are trying to achieve, why do you need multi-dimensional arrays? We have
done something similar but using nested classes.
 
Back
Top