What happens if we serialize a static class? Can more than one instance of the static class be created if we serialize it?
[Serializable] public static class
You can't serialize static classes (or any class whatsoever) using built-in .NET serialization features. You can only serialize instances of classes.
static