sending an object trough named pipes
I'm trying to use named pipes in C#, they work right with strings and messages, but does anyone know how to serialize an object through a named pipe?
I don't know if named pipes allow something like that, in general how can I send an object (for example a dataset, or a class) trough a pipe? Do pipes work only with strings or byte arrays?
Thanks in advance