As we know c++ is also an Object Oriented Programming language where most the things are objects like java. So wanted to know is the Serialize and deserializ features are available in c++ as well as we do it in java?
If yes how it can be achieved?
In java We use Serializable Interface to say that this type of object can be serialized and deserialized.
So in c++ how?
And out of curiosity is it same in c# as in java?