c# - How do update an item in an ObservableCollection? -


i have , observablecollection reason code not work.

 private void updatechildreninclass()     {         var item = childreninclass.firstordefault(i => i.name == currentchild.name);         if (item != null)         {             item = currentchild;          }     } 

item displays currentchild properties if in chidreninclass item properties have not been updated.

the problem item pointing object in observablecollection wanted update, set item point object(currentchild)


Popular posts from this blog

php - How should I create my API for mobile applications (Needs Authentication) -

python 3.x - PyQt5 - Signal : pyqtSignal no method connect -

5 Reasons to Blog Anonymously (and 5 Reasons Not To)