C# COM+ 생성 및 등록 방법
1. C# 클레스라이브러리 프로젝트 생성. 2.참조에 System.EnterpriseSevices 참조추가 및 using에 추가 및 using System.Runtime.InteropServices; 추가. 3.sn.exe로 강력한 이름생성. sn.exe -k "test.snk" 4.Assemblyinfo.cs 의 [assembly: AssemblyKeyFile("..\\..\\sampleClass.snk")] 추가. 5.cs파일내 Class에 [ClassInterface(ClassInterfaceType.AutoDual)] 추가. 6.컴파일 한후 gacutil.exe -i test.dll 로 전역어셈블리케시에 등록 7.regsvcs.exe test.dll 로 COM+서비스에 등록. 8.해당COM요소의 ..