Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7714117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T02:02:52+00:00 2026-06-01T02:02:52+00:00

Please see my code: IDictionary dictionary = new Hashtable(); const string key = key;

  • 0

Please see my code:

IDictionary dictionary = new Hashtable();
const string key = "key";
const string value = "value";
dictionary[key] = null; // set some trigger here

// set value
IDictionaryEnumerator dictionaryEnumerator = dictionary.GetEnumerator();
while (dictionaryEnumerator.MoveNext())
{
    DictionaryEntry entry = dictionaryEnumerator.Entry;
    if (entry.Value == null) // some business logic check; check for null value here
    {
        entry.Value = value; // set new value here
        break;
    }
}

Assert.AreEqual(value, dictionary[key]); // I have Fail here!

I wonder :

  1. What is correct approach for set new value for IDictionary when
    I do not know the corresponding key.

  2. Why my example is not working? As I understand I have set new value
    for DictionaryEntry by value (and value here is a reference) but
    it was not affected in source IDictionary. Why?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T02:02:53+00:00Added an answer on June 1, 2026 at 2:02 am

    DictionaryEntry does not hold a direct reference to the actual values, the internal datastructure is quite different. Therefore, setting the value on a DictionaryEntry will do nothing to the values actually in the Hashtable.

    To set a value, you must use the indexer. You can enumerate on the keys rather on the key-value pairs. This code is equivalent of what you tried with DictionaryEntry:

    IDictionary dictionary = new Hashtable();
    const string key = "key";
    const string value = "value";
    dictionary[key] = null; // set some trigger here
    
    foreach(var k in dictionary.Keys.OfType<object>().ToArray()) 
    {
        if(dictionary[k] == null) 
            dictionary[k] = value;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please see my code: Graphics grfx = Graphics.FromImage(new Bitmap(1, 1)); System.Drawing.Font f = new
Please see the following code: List list = Collections.synchronizedList(new ArrayList()); // ... synchronized (list)
I have got below code to GET dictionary type of session variable value. Please
I want to display some text below each grid image. Please see my code
Please see code. return from org in context.Organizations select new { PlaceId = org.OrganizationId,
Please see code (Using knockout.js over ASP MVC 3): self.tags = ko.utils.arrayMap(@Html.Raw(new JavaScriptSerializer().Serialize(Model.Tags)), function(tag)
Please see code below: s = new Socket(nextHopIP, 3434); fileIn = new FileInputStream(fileName); fileOut
Please see code below. The destructors are never called. Anyone know why and how
Please see the code below: #include <iostream> #include <stdlib.h> #include <time.h> using namespace std;
I am using jquery datepicker, please see below code $(document).ready(function() { $(.txtDate).datepicker({ showOn: 'button',

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.