Reputation: 903
I need to find a way to remote & communicate between windows pc and windows mobile via C#. What is the best way to do it via C# ?
Upvotes: 1
Views: 549
Reputation: 34592
Check out dotnetremoting.com which you can do that, ok it's commercial and may do what you are looking for.
Hope this helps.
Upvotes: 0
Reputation: 15722
have a look on this: Windows Mobile (C#) - Communicating between phone and PC
I would recommend using WCF, since it is a recent technology and would enable talking to any compatible device, not only to a windows pc.
br, Marcel
Upvotes: 0
Reputation: 67168
We need a lot more info on exactly what you need to do. For example RAPI provides a communication interface and you can write custom RAPI libraries. That gives the PC the ability to call methods on the device, but it's a far, far cry from actual Remoting.
Upvotes: 2