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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:46:09+00:00 2026-05-15T13:46:09+00:00

I have a struct struct myStruct { Dictionary<string, int> a; Dictionary<string, string> b; ……

  • 0

I have a struct

struct myStruct {
    Dictionary<string, int> a;
    Dictionary<string, string> b;
    ......
}

I want to create a arraylist of that struct

ArrayList l = new ArrayList();
myStruct s;

s.a.Add("id",1);
s.b.Add("name","Tim");

l.Add(s);

However, I got the error “Object reference not set to an instance of an object.”

Anyone could tell me why?

Thanks.

  • 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-15T13:46:10+00:00Added an answer on May 15, 2026 at 1:46 pm

    Some suggestions to improve your code:

    • Don’t use a struct, use a class instead. Structs in .NET are a little different and unless one understands those differences I doubt one will ever have a valid use for structs. A class is almost always what you want.

    • ArrayList is more or less obsolete, it’s almost always better to use a generic List<T> instead. Even if you need to place mixed objects in the list, List<object> is a better choice than ArrayList.

    • Make sure your members are properly initialized and not null before you access methods or properties of them.

    • It is better to use properties instead of public fields.

    Here is an example:

    class Container
    {
        Dictionary<string, int> A { get; set; }
        Dictionary<string, string> B { get; set; }
    
        public Container()
        {
             // initialize the dictionaries so they are not null
             // this can also be done at another place 
             // do it wherever it makes sense
             this.A = new Dictionary<string, int>();
             this.B = new Dictionary<string, string>();
        }
    }
    
    ...
    List<Container> l = new List<Container>();
    Container c = new Container();
    c.A.Add("id", 1);
    c.B.Add("name", "Tim");
    
    l.Add(c);
    ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 511k
  • Answers 511k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You have to have a running run loop for performSelector:withObject:afterDelay:… May 16, 2026 at 5:15 pm
  • Editorial Team
    Editorial Team added an answer It the zval represents a string, you can use Z_STRVAL… May 16, 2026 at 5:15 pm
  • Editorial Team
    Editorial Team added an answer Thanks everybody for helping this question. I believe I found… May 16, 2026 at 5:15 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I have a struct wich contains: struct mystruct{ int id[10]; char text[40]; unsigned short
Say I have this struct: struct MyStruct { int iID; int iMyNumber; }; Then
Say I have a struct: struct MyStruct { public int X public int Y
if I have a struct say: struct myStruct { int someInt; flot someFloat; }
I have a structure: struct mystruct { int* pointer; }; structure mystruct* struct_inst; Now
I have a struct with a dynamic array inside of it: struct mystruct {
I have a struct for which i want to define a relative order by
I have an unmanaged struct I'd like to marshal to c sharp that looks
Summary: I have a struct that is read/written to file. This struct changes frequently,
I have created structure : struct buffer { string ProjectName ; string ProjectID ;

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.