刪除我的用戶的IList的發現和自IList
private IList<User> _Players
我必須從列表中刪除特定用戶的方法
public virtual void RemovePlayer(User User)
{
int index=_Players.Select(T=>T.ID).ToList().IndexOf(User.ID);
_Players.RemoveAt(index);
}
我想知道是否有一個更簡單從這個列表中刪除用戶的方法
這個解決方案可以幫助很多,因爲我使用的是泛型,我可以刪除對象而無需知道它們包含的屬性。 – David 2011-04-10 06:39:57
作品完美;) – Soren 2013-01-02 04:47:29
我不能相信你不是最投票的解決方案!你的解決方案是BP – David 2014-03-13 11:18:48