I writing console application, and it has queue collection, that used as a factory of messages.
Is there some way that collection will raise events when it becames empty.
I just don't want start doing pulling it by myself, checking it from time to time.
I thought using ObservableCollection
but I dont see a way to implement raising events when it's becomes empty.
Thanks for help.