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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T10:02:24+00:00 2026-05-30T10:02:24+00:00

I am trying Dictionary<int, int> list = new Dictionary<int, int>(); for (int i =

  • 0

I am trying

   Dictionary<int, int> list = new Dictionary<int, int>();

   for (int i = 0; i < IDList.Count; i++)
   {
     list.Add(Convert.ToInt32(Cmd.Parameters["@ReturnVal"].Value.ToString()), IDList[i]);
   }
   return list;

When I addi a value twice there is no error but the third time it shows the error

an item with the same key has already been added. dictionary

Someone please tell me how to solve this.

  • 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-30T10:02:26+00:00Added an answer on May 30, 2026 at 10:02 am

    Assumption #1:

    You name your dictionary “list”, which suggests, you are not using a dictionary for what it was ment for and should possibly be using a List<T> instead.

    Dictionary requires that each key (the first parameter to Add()) is unique, however Cmd.Parameters["@ReturnVal"] looks suspiciously like it is the Parameters property of an SqlCommand (or one of its parent classes). If so, it will always return the same value in the code you show.

    So, if you really want to create a collection of tuples where the first value always is “@ReturnValue” and the second value is IDList[i], then you should use something like List<Tuple<int, int>> instead.

    Example:

      List<Tuple<int, int>> list = new List<Tuple<int, int>>();
    
      for (int i = 0; i < IDList.Count; i++)
      {
        list.Add(
          Tuple.Create(Convert.ToInt32(Cmd.Parameters["@ReturnVal"].Value), IDList[i])
        );
      }
    
      return list;
    

    Assumption #2:

    Actually, the IDList[i] values (again, as the name suggests) are the unique values, i.e. your keys, and you simply have the Dictionary<TKey,TValue>.Add() parameters the wrong way around.

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

Sidebar

Related Questions

I'm trying to go deep into Dictionary ADT and Skip List for Java. My
I am trying to create a dictionary from 2 lists where one list contains
This is my code: SortedDictionary<int,int> Numbers = new SortedDictionary<int,int>(); List<int> onlyP = new List<int>(Numbers.Keys);
So, I'm trying to load resources, add them to a dictionary, and have a
When trying to store a double or an int in a dictionary I get
Getting an InvalidCastException when trying something like this : IEnumerable<object> test = (IEnumerable<object>)new List<KeyValuePair<string,
I'm trying to find a LINQ oneliner that takes a Dictionary<String,Int> and returns a
I have a struct Test, which I add as a value to a dictionary.
I'm trying to use LINQ to create a new dictionary from an existing one,
I'm trying to modify the following code so that it will return a Dictionary<int,int>

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.