I have a situation where I need to monitor and react to changes to objects in a dictionary.
class Order
{
string Ordernumber;
string Orderstate;
int Shares;
decimal Price;
}
For Example:
Dictionary<string, Order> OrderData = new Dictionary<string, Order>
When for example OrderState changes in the Order Class what would be the best way to raise a property change for that specific entry in the Dictionary?
Thanks