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 609283
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:32:59+00:00 2026-05-13T17:32:59+00:00

How do I get the key and value of item from OrderedDictionary by index?

  • 0

How do I get the key and value of item from OrderedDictionary by index?

  • 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-13T17:32:59+00:00Added an answer on May 13, 2026 at 5:32 pm

    There is not a direct built-in way to do this. This is because for an OrderedDictionary the index is the key; if you want the actual key then you need to track it yourself. Probably the most straightforward way is to copy the keys to an indexable collection:

    // dict is OrderedDictionary
    object[] keys = new object[dict.Keys.Count];
    dict.Keys.CopyTo(keys, 0);
    for(int i = 0; i < dict.Keys.Count; i++) {
        Console.WriteLine(
            "Index = {0}, Key = {1}, Value = {2}",
            i,
            keys[i],
            dict[i]
        );
    }
    

    You could encapsulate this behavior into a new class that wraps access to the OrderedDictionary.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am modifying my program to get its values from a database and I
I recives a dictionary <string, string> from an API. I have to show this
I have a model Image that has a propery named uploaded_by_user that is a
I'm using NSXMLParser to parse a small XML file containing information about videos. One
So I'm trying to take this post and tweak it for my own purposes
I have a lot of tables and because of some reasons I need to
I'm trying to create a very simple bar chart using the results of a
Not to beat the dead horse , however, I am looking for a way
I have a SQL Server database designed like this : TableParameter Id (int, PRIMARY
I'm testing a Tiny_MCE plugin for BlogEngine.NET extension I wrote earlier and I keep

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.