Farhan Sarwar

Farhan Sarwar

Partial Classes in C#

A partial class is an ability to separate the implementation of a single class into multiple files and these files are combined to create in a single class when the code is compiled. Partial classes are created by using the…

Why do we need Serialization?

When you create an object in a .NET or Java application, you don’t need to think about how it is stored in memory, because the .NET/Java framework takes care of that for you and does the necessary serialization. What about…