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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T20:12:34+00:00 2026-05-30T20:12:34+00:00

We have a class with a dictionary that’s public: public class SomethingWithADictionary { public

  • 0

We have a class with a dictionary that’s public:

public class SomethingWithADictionary {
    public Dictionary<string, Instance> Instances { get; set; } 
}

Currently we access this dictionary directly, like this:

Instance inst = a.Instances["key"];

We want to make the dictionary private, but have a public way to get to the dictionary elements using the same indexer syntax. The reason is, if the instance is not in the dictionary, we’d like to take some action instead of just throwing an error.

How do you do that?

  • 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-30T20:12:35+00:00Added an answer on May 30, 2026 at 8:12 pm

    Does it have to be exactly the same syntax? If you don’t mind accessing it as:

    Instance inst = a["key"];
    

    then it’s easy – you just add an indexer:

    public class SomethingWithADictionary {
        private Dictionary<string, Instance> instances = 
            new Dictionary<string, Instance>();
    
        public Instance this[string key]
        {
            get
            {
                Instance instance;
                if (!instances.TryGetValue(key, out instance))
                {
                    // Custom logic here
                }
                return instance;
            }
            // You may not even want this...
            set { instances[key] = value; }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class that inherits a generic dictionary and an inteface public class
Currently, I have a class that is parsing XML and sending the dictionary that
I have a class : public class Person { public string name { get;
I have a class that's currently inheriting from Dictionary and then adds a few
I have a class that maintains a private Dictionary instance that caches some data.
I have a class that inherits from a generic dictionary as follows: Class myClass
I have a class that map objects to objects, but unlike dictionary it maps
I have an abstract base class that holds a Dictionary. I'd like inherited classes
I have a class derived from Dictionary. I need this class to simulate a
Let's assume that I have following models: class ScoutBook(models.Model): troop = models.ForeignKey('Dictionary', limit_choices_to={'type' :

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.