hi,
I'm trying to get arrylist collection in to xml string,
[Serializable]
[XmlRoot("Categories")]
public class CategoryCollection : IEnumerable<Category>
{
private ArrayList _categories;
public CategoryCollection()
{
_categories = new ArrayList();
DataSet ds = DB.ExecuteStoredProcDataSet("GetCategory");
FillArray(ds);
}
}
How can i get above collection in to xml string ?
Please need your valuable suggestion and any sample script
Appriciate for quick and best response
Go to the complete details ...