Serialization in .NET

Explain serialization.

- It is the process of converting the state of an object into a form that can be persisted or transported.
- It allows data to be easily stored and transferred.
- Serialization is a process of converting an object into a stream of bytes.

The .Net has two serializers namely:
1. XMLSerializer
2. SOAP/BINARY Serializer.

- Serialization is mainly used in the concept of .Net Remoting.
C#.Net multiple inheritance
C#.Net support multiple inheritance - No, but we can use interface instead...
Can private virtual methods be overridden in C#.NET?
C#.NET - Can private virtual methods be overridden in C#.NET? - First of all private methods in the inherited class can't be accessed...
Is is possible to force garbage collector to run? - C#.NET
C#.NET - Is is possible to force garbage collector to run? - we can force garbage collector to run using System.GC.Collect(). ...
Post your comment