Named Pipes in C# ... HELP !!

  • Thread starter Thread starter Tom Vandeplas
  • Start date Start date
T

Tom Vandeplas

Hi All,

I'm looking for a system similar to named pipes using C#. Basically what I
want is some sort of fast inter-process communication, preferable usable
with COM.

What I currently have is:
- Theoretically I could use the Queue object but, as I understand it, the
Queue can only dequeue one element at a time. So this is not my favorite.
- Alternatively I could use a more direct approach using C++ CreatePipe, I
think this should work, but since I not a C++ expert at all I'll definitely
need some help on this one...

All help (examples/info/alternatives) will be really appreciated !


Thx, Tom
 
Back
Top