I 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 ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.Netis not infinitely preferable.