IEnumerableリストから要素を削除することはできませんが、このリストは、他のクラスのプライベート属性であるListへの参照です。personsCollection.Remove(theElement)
同じクラス(クラスマネージャー)に入れると完璧に動作しますが、他のクラス(クラスマネージャー削除)から要素を削除する必要があります。どうすればこれができますか?ありがとう。
class Other
{
//Some code
public IEnumerable<Person> SearchByPhone (string value)
{
return from person in personCollection
where person.SPhone == value
select person;
}
}
class ManagerDelete
{
//Some code
IEnumerable<Person> auxList= SearchByPhone (value);
//I have a method for delete here
}
class Manager
{
//Some code
private List<Person> personsCollection = new List<Person>();
}