tags:

views:

38

answers:

1

I want to create ad-hoc network using c# in my application automaticaly without force the user to make it using windows and users can connect to this network using my application

A: 

you can that by Peer-to-Peer API.

http://msdn.microsoft.com/en-us/library/aa371704(VS.85).aspx

but, that APIs are native. can't use direct from C#, you can access API by P/Invoke.

kazuk