Can anyone tell me why this doesn't seem tow work?
This is the error I recieve..Code:[DllImport( "MRS.dll", CallingConvention = CallingConvention.StdCall, CharSet=CharSet.Ansi)]
This is C# btw.Code:The type or namespace name 'DllImportAttribute' could not be found (are you missing a using directive or an assembly reference?) (CS0246)
Edit: nevermind, fixed it. Had to call:
Code:using System.Runtime.InteropServices;


Reply With Quote

