Serializable attribute in .NET Framework
.NET (Core and Framework)
2
Posts
2
Posters
0
Views
1
Watching
-
I have seen ppl using Seriable attribute for Classes. Can anyone explain me wat does Serializable mean? and why is it used? Maddy
-
I have seen ppl using Seriable attribute for Classes. Can anyone explain me wat does Serializable mean? and why is it used? Maddy
It means that the class can be serialized. Which means that it can be stored in a file (or db or wherever) and then restored from there later on (it's how sessions work for example).
-------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!