I was able to modify my list in this way ls[5]="abc";
But i cant able to change the Ienumerable in any of the below ways, in the below ways ls was of type ienumerable , but i cant change the element values
ls.Elementat(5)="abc"
foreach(string ss in ls)
{
ss="abc";
}
Go to the complete details ...