1. Home
  2. Computing & Technology
  3. C / C++ / C#

Definition of Serialize

By David Bolton, About.com

Definition: This is a process of converting an instance of an object into a format suitable for saving to disk or transmission to another process or computer. It is often done by converting every data member into a stream of bytes but any method that allows it to be reconstructed (unserialized) is acceptable and XML has become a popular way to serialize because it allows objects to be transported by Soap.

Glossary:

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Examples:
In C# this can be done by marking a class with the Serializable attribute
// C# Example
[Serializable]
class Employee
Explore C / C++ / C#
By Category
About.com Special Features

Stay connected and entertained with reviews on tips on the latest HDTVs, cellphones and more. More >

Easy ways to connect two computers for networking purposes. More >

  1. Home
  2. Computing & Technology
  3. C / C++ / C#

©2009 About.com, a part of The New York Times Company.

All rights reserved.