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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:28:47+00:00 2026-05-27T09:28:47+00:00

I want to let two classes communicate with each other. I want to use

  • 0

I want to let two classes communicate with each other. I want to use a dictionary to be able to add items. I’ve simplified my pattern to solve it easily. How to use dictionary to add a new item.

I want to generate only one instance of MyClass. That is important. This is a kind of a trick…

public interface IHost
{

}

public class MyClass:IHost
{
   public Dictionary<int,string>; dic { get; set;}

   public MyClass()
   {
       dic =  new Dictionary<int,string>();
   }
}

public class  MyClass2 : IHost
{
    public MyClass()
    {

    }

    public void Save()
    {
      dic.Add(1,"vxcvcx");
    }
}

Error that I get:

The name ‘dic’ does not exist in the current context

  • 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-27T09:28:47+00:00Added an answer on May 27, 2026 at 9:28 am

    use a base class instead of an interface:

    abstract class MyBaseClass
    {
        public Dictionary<int,string> dic { get; set; }
    
        public MyBaseClass()
        {
            dic = new Dictionary<int, string>(5);
        }
    
        public void Add(int key, string value)
        {
            dic.Add(key, value);
        }
    }
    
    public class MyClass1 : MyBaseClass
    {
        public MyClass1():base()
        {          
        }        
    }
    
    public class MyClass2 : MyBaseClass
    {
        public MyClass2():base()
        {
    
        }
    
        public void Save()
        {
            Add(1, "somevalue");
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say you have two classes that extend UserControl . Each of the controls
Let's say I have two classes. Each class has one parameter. Parameter of first
I have two classes (A and B) which depend on each other in following
Summary Let's say I have two C# 4.0 classes, one inheriting from the other:
Let's say I have two classes Foo and Bar, and I want to make
Let's say we have two classes, Foo and Foo Sub, each in a different
I'm having a little problem where I want two different classes to be able
Let's say there are two python scripts that want to write data to the
Let's say I have created two objects from class foo and now want to
Let's say I know two points that make up a line. I want to

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.