Как лучше всего проверить, обновляется ли System.Collections.Generic.List<T> (C# 4.0)?
Мне нужно определить, обновляется ли список (элемент добавлен / удален). Мне нужно использовать System.Collections.Generic.List<T>
Я не могу использовать ObservableCollection
для этого (и подписаться на это CollectionChanged
событие).
Вот что я пробовал до сих пор:
я использую Fody.PropertyChanged
вместо реализации INotifyPropertyChangedEvent
- На GitHub изменено свойство Fody
[AlsoNotifyFor("ListCounter")]
public List<MyClass> MyProperty
{get;set;}
public int ListCounter {get {return MyProperty.Count;}}
//This method will be invoked when ListCounter value is changed
private void OnListCounterChanged()
{
//Some opertaion here
}
Есть ли лучший подход. Пожалуйста, дайте мне знать, если я делаю что-то не так, чтобы я мог улучшить.
1 ответ
Решение
Вы можете использовать методы расширения:
var items = new List<int>();
const int item = 3;
Console.WriteLine(
items.AddEvent(
item,
() => Console.WriteLine("Before add"),
() => Console.WriteLine("After add")
)
? "Item was added successfully"
: "Failed to add item");
Сам метод расширения.
public static class Extensions
{
public static bool AddEvent<T>(this List<T> items, T item, Action pre, Action post)
{
try
{
pre();
items.Add(item);
post();
return true;
}
catch (Exception)
{
return false;
}
}
}