Reputation:
I would like to pass an object from a C# application to be processed? How may I accomplish this task?
Upvotes: 0
Views: 98
Reputation: 40002
You might want to implement a queue of some sort. Reasons:
The type of queue you need depends on your environment. Here are two good options:
Upvotes: 1
Reputation: 37566
Create a socket and pass the data over TCP using the Network library
Upvotes: 2