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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:18:27+00:00 2026-05-27T19:18:27+00:00

I have configuration entity in my .NET CF application and I want to use

  • 0

I have configuration entity in my .NET CF application and I want to use singleton for this. Configuration can be changed and has to be saved/restored for next time application launch. I want to use xml serialize/deserialize, it also provides a possibility to change configuration over xml file.
The question is how to save and restore singleton? Deserialization creates a new instance of singleton class, but it means that it will be two instances of the singleton class at the moment.

I have found a solution with ISerializable interface, but it seems that it does not work with compact framework
http://msdn.microsoft.com/en-us/library/system.runtime.serialization.iserializable%28v=VS.90%29.aspx

Is there any way to obtain the same behavior with .NET CF?

  • 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-27T19:18:28+00:00Added an answer on May 27, 2026 at 7:18 pm

    Your singleton most likely uses a private constructor in its pattern. So you’d do something like this:

    public class MySingleton
    {
        private static MySingleton m_instance;
    
        private MySingleton() { }
    
        public static MySingleton Instance 
        { 
            get 
            {
                 if(m_instance == null)
                 {
                     // hydrate m_instance from serialized version
                 } 
                 return m_instance; 
            }
        }
    }
    

    or this:

    public class MySingleton
    {
        private static MySingleton m_instance;
    
        private MySingleton() 
        {
            // load data from config file 
        }
    
        public static MySingleton Instance 
        { 
            get 
            {
                 if(m_instance == null)
                 {
                     m_instance = new MySingleton();
                 } 
                 return m_instance; 
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this ASP.NET app, in which I use Entity Framework to connect to
I have configuration values saved in an app.config . I want to create a
Currently, we use a giant configuration object that is serialized to/from XML. This has
I have a WPF application in which I'm trying to use Entity Framework 4.1
I use Entity Framework 4.1, SQL Server 2008 & .NET 4.0 I have a
I'm working in xmldataprovider and we have configuration value source this value may be
I have this configuration: A page containing a search field, at the submit in
I have this configuration of nginx : server { listen 80; server_name example.com www.example.com;
I have a configuration file where a developer can specify a text color by
We have certain configuration files which we want to be in version control as

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.