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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T13:26:31+00:00 2026-05-20T13:26:31+00:00

Just wanted to know if serializing a string is equivalent to getting its bytes?

  • 0

Just wanted to know if serializing a string is equivalent to getting its bytes?

System.Text.UTF8Encoding encoding = new System.Text.UTF8Encoding();
            Byte[] responseBytes = encoding.GetBytes(Reader.ReadToEnd());

Is that serializing? Assuming the Reader.ReadToEnd() is returning a string.
If not, how do you serialize a string ?

  • 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-20T13:26:32+00:00Added an answer on May 20, 2026 at 1:26 pm

    Serializing an object means writing its bytes in a format that can be used to recreate the object elsewhere.

    I’d expand on this and say that serializing an object means writing its bytes to an object that can be read by a deserializer, e.g. a BinaryFormatter.Deserialize(), which takes a Stream.

    Getting a string’s bytes isn’t the same thing, especially when you pick an arbitrary encoding mechanism. To use those bytes to serialize your string, you’ll have to write your own deserializer.

    You could argue that a UTF8Encoding object is a kind of serializer, using GetBytes() and GetString(), but it’s not a standard ‘serializer’, e.g. you can’t use it to pass your string over a WCF Service.

    To be deserialized, an object has to have a constructor in the form:

    public MyObject(SerializationInfo info, StreamingContext ctx) {...}
    

    and a method to add data to a serialization stream in the form:

    public void GetObjectData(SerializationInfo info, StreamingContext ctxt){...}
    

    A string in .NET is marked [Serializable] and has both of these… neither of which is called in the call to UTF8Encoding.GetBytes() or UTF8Encoding.GetString()

    There are lots of examples of how to serialize objects… one way is to use a BinaryFormatter to write to a FileStream (you could also use a MemoryStream):

    string myString = "Whee!";
    FileStream fileStream = new FileStream("MyString.txt", FileMode.OpenOrCreate, FileAccess.Write);
    
    try {
        BinaryFormatter formatter = new BinaryFormatter();
        formatter.Serialize(fileStream, myString);
    }
    finally {
        fileStream.Close();
    }
    

    To deserialize:

    string myString;
    FileStream fileStream = new FileStream("MyString.txt", FileMode.Open, FileAccess.Read);
    
    try {
        BinaryFormatter formatter = new BinaryFormatter();
        myString= (string) formatter.Deserialize(fileStream);
    }
    finally {
        fileStream.Close();
    }
    

    HTH,
    James

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

Sidebar

Related Questions

Just wanted to know. Is it possible to highlight text in ElasticSearch on an
Just wanted to know. What are the differences between java.util.Properties Vs java.util.HashMap<String, String> ?
I just wanted to know more about analytics. I am new to this thing.
Just wanted to know if it is better to have Accept-Encoding, gzip in request
Just wanted to know is there a way to protect an application from getting
Just wanted to know how to get default Windows text editor .exe path c++.
I am a bit new to MySQL and just wanted to know what is
Just wanted to know how i would replace sitename.com with sitename2.com whenever a user
Just wanted to know something about signed vs unsigned interpretation. Am I right if
Just wanted to know if anyone is really using Objects and Collections in Oracle

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.