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

B

Bhuwan Bhaskar

Hi,

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

Thanks N Regards,
Bhuwan
 
M

Michael Nemtsev, MVP

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
 
C

Cowboy \(Gregory A. Beamer\)

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!
|
*************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top