winform 코드 가져오기 dll 구현

602 단어 WinForm
코드는 다음과 같습니다.
        [DllImport("kernel32.dll", EntryPoint = "LoadLibrary")]
        public static extern IntPtr LoadLibrary(string sLibName);

        [DllImport("kernel32.dll", EntryPoint = "FreeLibrary")]
        public static extern int FreeLibrary(string sLibName);

IntPtr hDll = LoadLibrary("××.DLL");
            if (hDll == IntPtr.Zero)
            {
                MessageBox.Show("Can't load library!");
                return false;
            }

좋은 웹페이지 즐겨찾기