Is there any way to update the value object of dictionary in one go without performing the iteration for all the items?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, there isn’t a way to update all items “at once”.
If you want to update all of the items in a
Dictionary, you need to go through all of them.If you want the operation to be atomic, you need to enclose it in a
lockor another synchronization mechanism.