[유니티/C#] [DllImport] 사용하기

프로그래밍/유니티2018. 4. 9. 19:51

안녕하세요. 개발자 드리머즈입니다.


C#에서 [DLLImport]를 사용하려고 했더니 아래와 같은 에러가 발생했습니다.

The name 'DllImport' does not exist in the current context.


해결방법은 간단합니다.

코드 상단의 using 부분에 아래의 코드를 추가하면 됩니다.


1
using System.Runtime.InteropServices;
cs


작성자

Posted by 드리머즈

관련 글

댓글 영역