c# - save only edited listbox entries -
if i've existing entries in listbox. when click on edit button i'll able edit entries. after editing 1 or more entries when again clicked on button, want save entries edited. how this? please suggest solution.
couple of ways of doing that. can save each entry list<t>
on every edit, or can cache (pre-store) listbox items , after finishing editing can compare latest previous , extract out edited items. imo first approach better , easier implement.
Comments
Post a Comment