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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:20:07+00:00 2026-05-26T02:20:07+00:00

In C#, the Dictionary class takes a single key and maps it to a

  • 0

In C#, the Dictionary class takes a single key and maps it to a single value. I’m looking for something similar, where I can pass in an ordered tuple and get a single value — without wrapping it in a class.

Here’s a pretty hypothetical example of what I want (with buttons, instead of some 2D map tile). Currently, I can do this:

Dictionary<int, Button> buttons = new Dictionary<int, Button>();

If I want to use each button’s coordinates as the key, I can do this:

Dictionary<Point, Button> buttons = new Dictionary<Point, Button>();
buttons[new Point(b.X, b.Y)] = b;

What I would like to do is this

Dictionary<int, int, Button> buttons = new Dictionary<int, int, Button>();
buttons[b.X, b.Y] = b;

Again, it’s a trivial case with a known work-around. But I just find it annoying that I have to create a new placeholder class (struct?) with each set of parameters that I want to use as a key.

Is this somehow possible?

  • 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-26T02:20:08+00:00Added an answer on May 26, 2026 at 2:20 am
    public class TupleDictionary<T1, T2, TValue> : Dictionary<Tuple<T1,T2>,TValue>
    {
        public TValue this[T1 t1, T2 t2]
        {
            get { return this[new Tuple<T1, T2>(t1, t2)]; }
            set { this[new Tuple<T1, T2>(t1,t2)] = value; }
        }
    
        public void Add(T1 t1, T2 t2, TValue value)
        {
            Add(new Tuple<T1, T2>(t1, t2), value);
        }
    
        public void Remove(T1 t1, T2 t2)
        {
            Remove(new Tuple<T1, T2>(t1, t2));
        }
    
        public bool ContainsKey(T1 t1, T2 t2)
        {
            return ContainsKey(new Tuple<T1, T2>(t1, t2));
        }
    
        public bool TryGetValue(T1 t1, T2 t2, out TValue value)
        {
            return TryGetValue(new Tuple<T1, T2>(t1, t2), out value);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a dictionary that takes in a tuple function and an int Dictionary<Tuple<string,string>,
I want to write in Delphi (2009 - so I have generic dictionary class)
Because of some limitations ( example ) in the built-in ActionScript 3 Dictionary class
I am trying to inject dependency to my session dictionary class into my controller's
I have created a dictionary in Class A and would like to return the
I have a class that inherits from a generic dictionary as follows: Class myClass
I have a class derived from Dictionary. I need this class to simulate a
I created a class Entry to handle Dictionary entries, but in my main(), I
I have an abstract base class that holds a Dictionary. I'd like inherited classes
I have defined a class Listener and created a dictionary of Listener objects. Each

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.