We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this questionI want to write a c# program that create a socket using a native socket dll witch is would be written in c or c++
any idea about a good c++ socket dll ?
You can do this yourself using direct PInvoke on the Winsock API, which is all wrapped up in a system DLL.
The question is, why would you want to? Unless the hypothetical DLL has some added value that's not clear in the question, can't think why using System.Net
is not infinitely preferable.
精彩评论