//Give me an example for Serialising Multidimensional array in c sharp.
//While searching in net i found this code snippet
[XmlIgnore]
public char[,] Data;
[XmlElement("Data")]
[EditorBrowsable(EditorBrowsableState.Never)]
public char[][] XmlData
{
get { /* copy contents of Data into a jagged array */ }
set { /* copy contents of jagged array into Data */ }
}
//Please explain this in detail.
rexdon 0 Newbie Poster
deceptikon 1,790 Code Sniper Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.