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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:41:14+00:00 2026-06-15T20:41:14+00:00

I want to take a List , and generate a Dictionary which maps each

  • 0

I want to take a List, and generate a Dictionary which maps each element to its index in the List. I can do this like so, for a List<string>:

var myList = new List<string>{ /* populate list */ };
var orderMap = new Dictionary<string, int>();

foreach (var element in myList)
{
    orderMap[element] = myList.IndexOf(element);
}

Basically, I want to take a list like:

Apple
Banana
Orange

And return a map showing indices:

Apple -> 0
Banana -> 1
Orange -> 2

How can I do this with Linq? I think something like this should work:

orderMap = myList.Select( x => /* return a key value pair mapping x to myList.IndexOf(x) */ );

But I can’t figure out the right syntax for it. Besides, can you refer to the list itself in the delegate used for Select?

  • 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-15T20:41:15+00:00Added an answer on June 15, 2026 at 8:41 pm

    While you can refer to the list within the delegate, it’s not generally a good idea. You really want to use the overload of Select which provides the index as well as the value:

    var dictionary = list.Select((value, index) => new { value, index })
                         .ToDictionary(p => p.value, p => p.index);
    

    Note that this will throw an exception if you have any duplicate elements.

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

Sidebar

Related Questions

I want to generate a unordered list which contains tag for showing images in
I want to take a list [0,1,2] and turn it into [0,1,2,2,1,0] . Right
I have one list that I want to take a slice of, reverse that
I want to take an expression in tcl and convert its _ to <
I want to take HTML form data and handle the submited data(string for example)
I want generate a list of numbers from 0000 to 9999. I would then
Take for example: CreateOrderTicket(ByVal items As List(Of OrderItems)) As String Where would you put
I want to generate a sequence like a multiplication table. So for a start
I am trying to pass a List<string> to a method that will take it
Is there a regex that would take the following sentence: I want this split

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.