로딩
티스토리 데이터 처리 중입니다.

DLL을 regsvr32.exe로 등록하기

 DLL을 regsvr32.exe로 등록하기

void RegisterDLL(string filename) { var process = new Process(); process.StartInfo.FileName = "regsvr32.exe"; process.StartInfo.Arguments = "/s \"" + filename + "\""; process.StartInfo.UseShellExecu.....

DLL을 regsvr32.exe로 등록하기에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.