What type objects can we can not serialiaze in dot net ?

  • Thread starter Thread starter Bhuwan Bhaskar
  • Start date Start date
B

Bhuwan Bhaskar

Hi,

What type objects can we can not serialiaze in dot net ?

Thanks N Regards,
Bhuwan
 
Hello Bhuwan,

What do you want to get?
All types can be serialized somehow

---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo


BB> Hi,
BB>
BB> What type objects can we can not serialiaze in dot net ?
BB>
BB> Thanks N Regards,
BB> Bhuwan
 
Technically, any object can serialize. It would be wise, however, to avoid
serializing objects that have underlying hooks into unmanaged code (COM
Interop, for example or a data bound object with an open SQL connection).
The later (SQL connection) is bad form anyway.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box!
|
*************************************************
 
Back
Top