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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T10:28:43+00:00 2026-05-13T10:28:43+00:00

Hopefully a question with a very simple answer, but it’s not one that I’ve

  • 0

Hopefully a question with a very simple answer, but it’s not one that I’ve been able to find. I have a small XML document that looks roughly like this:

<aa>
  <bb><name>bb1</name></bb>
  <bb><name>bb2</name></bb>
  <bb><name>bb3</name></bb>
</aa>

I have classes that represent aa and bb

[XmlRoot("aa")]
public class aa
{
  [XmlArray("bbs")]
  [XmlArrayItem("bb")]
  public bb[] bbs;
}

public class bb
{
  [XmlElement("name")]
  public string Name;
}

When I try to deserialize the document using an XmlSerializer I get an aa object with a null bbs property.
As I understand it this is because the attributes I’ve used on the bbs property tell the serializer to expect a document like this:

<aa>
  <bbs>
    <bb><name>bb1</name></bb>
    <bb><name>bb2</name></bb>
    <bb><name>bb3</name></bb>
  </bbs>
</aa>

Given that I cannot change the format of the XML I am receiving, is there a way to tell the XmlSerialiser to expect an array that is not wrapped inside another tag?

  • 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-13T10:28:44+00:00Added an answer on May 13, 2026 at 10:28 am

    Try replacing your [XmlArray("bbs")] and [XmlArrayItem("bb")] attributes with a single [XmlElement] attribute

    [XmlRoot("aa")]
    public class aa
    {
      [XmlElement("bb")]
      public bb[] bbs;
    }
    
    public class bb
    {
      [XmlElement("name")]
      public string Name;
    }
    

    By putting the Array and ArrayItem attributes in, you were explicitly describing how to serialize this as an array with a wrapping container.

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

Sidebar

Related Questions

This is hopefully a very simple question, but one a lot of Googling has
This is probably a very simple question, but I can't find the answer, so
Hopefully this is a very simple question. I have a makefile pattern rule that
This isn't a very simple question, but hopefully someone has run across it. I
This is hopefully a very simple maths question. If I have two number ranges,
Hopefully a very simple question. But I'm using Code First with an MVC app
Hopefully very simple SQL question - I'm just blacking out :) I have a
this may well be a very basic question, but I haven't been able to
This could be a very basic question, but hopefully someone will be able to
Quick question, hopefully I am just missing something simple. Ok I have one class

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.