Missing DLLImport even though there is a "using InteropServices"
Try adding
using System.Runtime.InteropServices;
to your class, that's the namespace the DllImportAttribute
resides in.
It's DllImport
not DLLImport
:)
Try adding
using System.Runtime.InteropServices;
to your class, that's the namespace the DllImportAttribute
resides in.
It's DllImport
not DLLImport
:)