I have a IList .
IList<MyClass> MyList
{
get;
set;
}
I copy a list of Myclass to this in page load
MyList=Listofmyclass;
I want add a new item to MyList
MyList.Add(NewItem);
but when i use this code i get error "Collection was of a fixed size."
How to add new item to IList?