본문 바로가기
C++ 200제/코딩 IT 정보

C# interop type cannot be embedded (비주얼스튜디오 에러)

by vicddory 2017. 6. 23.

C# interop type cannot be embedded (비주얼스튜디오 에러)


에러 메시지 : Interop type XXX cannot be embedded. Use the applicable interface instead


비주얼 스튜디오에서 발생하는 에러입니다. 이 경우엔 에러가 발생하는 참조 속성인 Embed Interop Types를 바꿔줍니다.


비주얼 스튜디오 Interop 에러[C# interop type cannot be embedded (비주얼스튜디오 에러)]


그리고 이벤트를 사용하지 않을 경우엔 Interop Class를 생성하지 않아도 되니 고려할 필요는 없습니다.


참조 사이트 - Check your Embed Interop Types flag when doing Visual Studio extensibility work

C# interop type cannot be embedded (비주얼스튜디오 에러)