RV.
RV.

Reputation: 2842

What is ipc? How can I use it?

What is ipc in .net? Is it possible to use ipc in .net 2003? Please explain how.

Upvotes: 2

Views: 754

Answers (3)

JaredPar
JaredPar

Reputation: 754715

IPC is short for "InterProcess Communication". It's essentially any method by which 2 processes communicate information. It is not limited to a particular technology like .Net but is available in many forms.

For the version of the CLR that ships with VS 2003, the most popular IPC mechanism is .Net Remoting. This is a huge topic and even an introduction is not very easy in an SO post. Your best bet is to google. for .Net Remoting and start from there. There are tons of tutorials available

Upvotes: 7

Meetu Choudhary
Meetu Choudhary

Reputation: 1355

IPC stands for Inter-Process Communication and an example of IPC in ,Net is .Net Remotng. you should google it and try then if you get any problem then do ask in forums.

Upvotes: 0

Alex Martelli
Alex Martelli

Reputation: 881635

IPC stands for Inter-Process Communication. The possibilities for that in .NET are simply too many to list! What are you looking for, more precisely?

Upvotes: 0

Related Questions