It is first time I am trying to use DllImort in C#. But it is not appearing in InteliSense. I have added
using System.Runtime.InteropServices;
But it is not working again. Instead this [DllImportAttribute] is shown.
What am I doing wrong?
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 do nothing wrong. Use this attribute to define the managed signature for the method you want to import.
As Example
Look in MSDN for all possible parameter for
DllImport