How Do I...Use ISerializable to Customize the Serialization of a Class?
This sample illustrates how to use the ISerializable interface to customize
the serialization of your own objects. This sample serializes objects based
on the mscorlib assembly namespace tree structure. Each object contains a
property as the name of the item and a list of children as per the real
object in the mscorlib assembly. To demonstrate the customization possible
with ISerializable, "(SAVED)" is appended to the namespace name to indicate
that the values are not live. When the data is read back in, this tag could
be modified or removed. Note: This sample requires the
System.Runtime.Serialization.Formatters.Soap.dll.
Example
C# ISerializable.exe
[This sample can be found at M:\web\users\Sites\AspnetQuickStart\v2.0\QuickStart\howto\samples\Serialization\ISerializable\
To build this sample, open the SDK command prompt and navigate to the above path. Build the sample using the build tool msbuild
passing the solution file as the first parameter: msbuild mySample.sln. The compiled executable will be found in the sub directory \bin
directory.]
Microsoft .NET Framework SDK QuickStart Tutorials Version 2.0
Copyright � 2005 Microsoft Corporation. All rights reserved.
|