1
Answer

How to store List<> into array in MVC

Photo of Dr.Ajay Kashyap

Dr.Ajay Kashyap

8y
728
1
 i want to store category name in array for temporary use but value are remove 
 
foreach (var i in ci)
{
string[] arrTeamMembers = new string[] { i.Category};
}

Answers (1)