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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T07:39:33+00:00 2026-06-06T07:39:33+00:00

I have the following code which outputs an object to an XML file: using

  • 0

I have the following code which outputs an object to an XML file:

using System;
using System.IO;
using System.Collections.Generic;
using System.Reflection;
using System.Xml;
using System.Xml.Serialization;

namespace TrailBlazerReloaded
{
    public class Config
    {
        Config config = null;
        XmlSerializer serializer = new XmlSerializer(typeof(Config));

        public Config()
        {
            CollectionPaths = null;
            Definitions = null;
            TrailerPath = null;
        }

        public string Version { get; set; }

        public string[] CollectionPaths { get; set; }

        public string[] Definitions { get; set; }

        public string[] TrailerPath { get; set; }

        public void WriteConfig(Config configToSave)
        {
            serializer = new XmlSerializer(typeof(Config));
            TextWriter textWriter = new StreamWriter(@"config.xml");
            serializer.Serialize(textWriter, configToSave);
            textWriter.Close();
        }

        public Config ReadConfig()
        {
            if (File.Exists(@"Config.xml"))
            {
                var reader = new StreamReader("Config.xml");
                config = (Config) serializer.Deserialize(reader);
                reader.Close();
            }

            return config;
        }

        public static string GetConfigFilePath()
        {
            return Assembly.GetExecutingAssembly().Location + ".config";
        }

    }
}

It returns the following result:

<?xml version="1.0" encoding="utf-8"?>
<Config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Version>0.0.1</Version>
  <CollectionPaths>
    <string>F:\Trailblazer Test Folder 1</string>
    <string>F:\Trailblazer Test Folder 2</string>
    <string>F:\Trailblazer Test Folder 3 (100 Films)</string>
  </CollectionPaths>
  <Definitions>
    <string>1080p</string>
    <string>720p</string>
    <string>480p</string>
  </Definitions>
  <TrailerPath>
    <string>C:\</string>
  </TrailerPath>
</Config>

However, I would like the output to include an attribute on each of the Definition tag items like this:

<?xml version="1.0" encoding="utf-8"?>
<Config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Version>0.0.1</Version>
  <CollectionPaths>
    <string>F:\Trailblazer Test Folder 1</string>
    <string>F:\Trailblazer Test Folder 2</string>
    <string>F:\Trailblazer Test Folder 3 (100 Films)</string>
  </CollectionPaths>
  <Definitions>
    <string active="true">1080p</string>
    <string active="false">720p</string>
    <string active="true">480p</string>
  </Definitions>
  <TrailerPath>
    <string>C:\</string>
  </TrailerPath>
</Config>

Any ideas? 🙂

  • 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-06-06T07:39:34+00:00Added an answer on June 6, 2026 at 7:39 am

    You will have to use a custom type instead of a string.

    public class Definition
    {
        [XmlAttribute("active")]
        public bool Active;
        
        [XmlText]
        public string Text;
    }
    

    then define the Definitions property like so

    [XmlElement("string")]
    public Definition[] Definitions { get; set; }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code : using System.Collections.Generic; public class Test { static void
I have the following code #include <iostream> using namespace std; class Object { public:
I have the following code in my template: {{ object.rating.get_percent|floatformat|add:-100 }} Which outputs -50
I have the following code which is part of unit testing for serialization support
I have the following code which works: foreach ($db in $svr.Databases | where-object {
I have the following code, which will output the child-elements of the weather element.
I have following code which works for radio buttons but need to be changed
I want to know is below code correct ? I have following code which
i have the following code which works fine to download image form url .
I have the following code which is meant to access the local database and

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.