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

  • Home
  • SEARCH
  • 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 770637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T18:31:48+00:00 2026-05-14T18:31:48+00:00

I just need to be able to insert a key/value pair into an object

  • 0

I just need to be able to insert a key/value pair into an object at a specific position. I’m currently working with a Hashtable which, of course, doesn’t allow for this functionality. What would be the best approach?

UPDATE: Also, I do need the ability to lookup by the key.

For example (oversimplified and pseudocoded but should convey the point):

// existing Hashtable
myHashtable.Add("somekey1", "somevalue1");
myHashtable.Add("somekey2", "somevalue2");
myHashtable.Add("somekey3", "somevalue3");

// Some other object that will allow me to insert a new key/value pair.
// Assume that this object has been populated with the above key/value pairs.
oSomeObject.Insert("newfirstkey","newfirstvalue");
  • 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-05-14T18:31:48+00:00Added an answer on May 14, 2026 at 6:31 pm
    List<KeyValuePair<string, string>> kvpList = new List<KeyValuePair<string, string>>()
    {
        new KeyValuePair<string, string>("Key1", "Value1"),
        new KeyValuePair<string, string>("Key2", "Value2"),
        new KeyValuePair<string, string>("Key3", "Value3"),
    };
    
    kvpList.Insert(0, new KeyValuePair<string, string>("New Key 1", "New Value 1"));
    

    Using this code:

    foreach (KeyValuePair<string, string> kvp in kvpList)
    {
        Console.WriteLine(string.Format("Key: {0} Value: {1}", kvp.Key, kvp.Value);
    }
    

    the expected output should be:

    Key: New Key 1 Value: New Value 1
    Key: Key 1 Value: Value 1
    Key: Key 2 Value: Value 2
    Key: Key 3 Value: Value 3
    

    The same will work with a KeyValuePair or whatever other type you want to use..

    Edit –

    To lookup by the key, you can do the following:

    var result = stringList.Where(s => s == "Lookup");
    

    You could do this with a KeyValuePair by doing the following:

    var result = kvpList.Where (kvp => kvp.Value == "Lookup");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 390k
  • Answers 390k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Like this: if (document.documentElement.scrollHeight === document.documentElement.clientHeight) { //There is no… May 15, 2026 at 1:06 am
  • Editorial Team
    Editorial Team added an answer That's called path info. You can use HttpServletRequest#getPathInfo() to grab… May 15, 2026 at 1:06 am
  • Editorial Team
    Editorial Team added an answer Cause was <pathelement location="./bin" />. This bin folder was recompiled… May 15, 2026 at 1:06 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.