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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:59:27+00:00 2026-05-17T00:59:27+00:00

I have some class with lots of fields; public class CrowdedHouse { public int

  • 0

I have some class with lots of fields;

public class CrowdedHouse
{
  public int     value1;
  public float   value2;
  public Guid    value3;
  public string  Value4;

  // some more fields below
}

My classmust be (de)serialized into simple Windows text file in the following format

NAME1=VALUE1
NAME2=VALUE2

What is the most convinient way to do that in .NET? This is a text file and all the values must be fist converted to string. Let’s assume I have already converted all data to strings.

UPDATE One option would be pinvoke WritePrivateProfileString/WritePrivateProfileString
but these are using the required “[Section]” field that I don’t need to use.

  • 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-17T00:59:28+00:00Added an answer on May 17, 2026 at 12:59 am

    EDIT: If you have already converted each data value to strings, simply use the method below to serialize it after making a Dictionary of these values:

    var dict = new Dictionary<string, string>
    {
        { "value1", "value1value" },
        { "value2", "value2value" },
        // etc
    }
    

    or use dict.Add(string key, string value).


    To read the data, simply split each line around the = and store the results as a Dictionary<string, string>:

    string[] lines = File.ReadAllLines("file.ext");
    var dict = lines.Select(l => l.Split('=')).ToDictionary(a => a[0], a => a[1]);
    

    To convert a dictionary to the file, use:

    string[] lines = dict.Select(kvp => kvp.Key + "=" + kvp.Value).ToArray();
    File.WriteAllLines(lines);
    

    Note that your NAMEs and VALUEs cannot contain =.

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

Sidebar

Related Questions

Assuming I have some object like, with LOTS of properties: public class SomeObject {
I have lots(+2000) of GUIDs(in some network class) and my program must find one
I have an interface class public interface AsyncTaskExecuteCommand { public Object executeCommand(String jsonLocation) throws
Suppose I have some per-class data: (AandB.h) class A { public: static Persister* getPersister();
I have some class that I'm passing as a result of a service method,
I have some class SimpleButton . It is a Child of Button class. Button
Suppose I have some class which has a property actor_ of type Actor .
So I have some class starting with #include <wchar.h> #include <stdlib.h> and there is
Basically I have some class objects, each with three properties. Once one class object
the basic idea is that you have some class that has a reference type

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.