Reputation: 2491
Recently, I would like to develop a simple chat program using c# and Winform,Main feature is chat and file transfer ,But i can't found example about implement p2p using dotnet,Who can help me?
Upvotes: 4
Views: 14990
Reputation: 294197
Do you want to implement p2p functionality or a specific p2p protocol?
For generic p2p functionality, or any kind of communication functionality, you should probably use WCF.
For specific p2p protocols, like direct connect, BitTorrent and the like you need to decide first which protocol you want to use, and most likely there will be an already existing .Net library for it.
Upvotes: 0