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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:08:01+00:00 2026-05-23T16:08:01+00:00

My serializable class is below, and I’m trying to get it to copy correctly.

  • 0

My serializable class is below, and I’m trying to get it to copy correctly.

    public class AppContext : IXmlSerializable 
    {
        public bool autoGeneratedTitle = true;
        public bool truncateLabels = false;

        public IDictionary<string, OPTIONS> dict_Options = new Dictionary<string, OPTIONS>();
        // Advanced Options
        public List<string> listAdvancedOptions = new List<string>();

        public IDictionary<string, string> dictFilterPermissions = new Dictionary<string, string>();




        public class OPTIONS {
            public string subjectId = string.Empty;
            public string varNumber = string.Empty;
            public string varName = string.Empty;
            public string format = string.Empty;
            public string varLabel = string.Empty;

            public IDictionary<string, string> dictTagElements = new Dictionary<string, string>();
            public IDictionary<string, string> dictRefElements = new Dictionary<string, string>();
            ////TJM add includeZero
            public string includeZero = string.Empty;
        }


        public void CopyContext(AppContext copy)
        {

            autoGeneratedTitle = copy.autoGeneratedTitle;
            truncateLabels = copy.truncateLabels;

            dict_Options = ?;
            dictFilterPermissions = ?;
            listAdvancedOptions = ?;
        }
    }

How do I copy the dict_Options, dictFilterPermissions, and listAdvancedOptions correctly?

  • 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-23T16:08:01+00:00Added an answer on May 23, 2026 at 4:08 pm

    Found this online off of a link from a .NET forum.

        public virtual AppContext DeepClone()
        {
            //First do a shallow copy.
            AppContext returnData = (AppContext)this.MemberwiseClone();
    
            //Get the type.
            Type type = returnData.GetType();
    
            //Now get all the member variables.
            FieldInfo[] fieldInfoArray = type.GetFields();
    
            //Deepclone members that extend AppContext.
            //This will ensure we get everything we need.
            foreach (FieldInfo fieldInfo in fieldInfoArray)
            {
                //This gets the actual object in that field.
                object sourceFieldValue = fieldInfo.GetValue(this);
    
                //See if this member is AppContext
                if (sourceFieldValue is AppContext)
                {
                    //If so, cast as a AppContext.
                    AppContext sourceAppContext = (AppContext)sourceFieldValue;
    
                    //Create a clone of it.
                    AppContext clonedAppContext = sourceAppContext.DeepClone();
    
                    //Within the cloned containig class.
                    fieldInfo.SetValue(returnData, clonedAppContext);
                }
            }
            return returnData;
        }
    

    This appears to work and use it like this:

          AppContext tempContext = new AppContext();
    
            tempContext = appContext.DeepClone();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My jpa looks like below public class TESTClass implements Serializable { ... private String
I have a webservice [Serializable] public class DataObject { public int ID { get;
I've a simple class [Serializable] public class MyClass { public String FirstName { get;
I have two classes, shown below: [Serializable] [XmlInclude(typeof(SomeDerived))] public class SomeBase { public string
I have 2 class like below, public class CheckInBean implements Serializable{ private String user;
Please consider this example class: [Serializable] public class SomeClass { private DateTime _SomeDateTime; public
Say I have a couple of basic objects like so: [Serializable] public class Base
greetngs, i have two classes: [Serializable] public class FireGridUnit { public GridUnit FireGridLocation {
I have a custom class declared as follows (in vb.net) <Serializable()> Public Class NumInfo
I have a class like this: [Serializable] public class Structure { #region Constants 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.