Top "Serializable" questions

Serialization is the process of converting a data structure or object state into a format that can be stored.

Fragment crashes with Parcel: unable to marshal value error when onPause method is called

I have been developing android apps for a while now but only recently gotten into Fragments and hence I run …

android android-fragments serializable jsonobject
If my class implements Serializable, do I have to implement it in its subclasses?

If I have B extends A... and A implements Serializable, do I have to write "B implements Serializable" ? I think …

java serializable
UserControl collection not marked as serializable

I must be missing something really obvious. I'm quite new to C# but have been programming in C/C++ for …

c# collections user-controls properties serializable
what is difference between Parcelable and Serialization used in android

I want to know exact , whether should I used parcelable or serialization technique for sending data from one activity to …

android serializable parcelable
Who actually implements serializable methods?

I've been learning how to use Serializable. I know if I create a class 'A' with different variables who implements …

java serializable
Is using Serializable in Android bad?

I've been reading a lot of posts and articles extolling the speed of Parcelable over Serializable. I've been using both …

android serializable parcelable
How can I add a type constraint to include anything serializable in a generic method?

My generic method needs to serialize the object passed to it, however just insisting that it implements ISerializable doesn't seem …

c# generics attributes serializable
Why does HttpServlet implement Serializable?

In my understanding of Servlet, the Servlet will be instantiated by the Container, its init() method will be called once, …

java session servlets serializable
Android - Save Parcelable data into a file

I used to use Serializable objects to save them in filesytem and read them in order to do whatever I …

android gson parcelable serializable
Why can't I use WCF DataContract and ISerializable on the same class?

I have a class that I need to be able to serialize to a SQLServer session variable and be available …

c# wcf asp.net-3.5 datacontract serializable