I have the following code:
Code:
public class abc
{
public string customername { get; set; }
public List<def> DEF { get; set; }
}
public class def
{
public string materialcode { get; set; }
}
on page load
protected void Page_Load(object sender, EventArgs e)
{
List<abc> test1 = new List<abc>();