[C#] C 언어로 생성된 dll 호출

2871 단어 C#

C# C-언어 생성 dll 호출

using System;
using System.Runtime.InteropServices;	//   dll       
using System.Windows.Forms;
class Example
{
	//[  dll,dll exe        ]  dll getCpuID1  
    [DllImport("CPUID32DLL.dll", CharSet = CharSet.Auto)] public static extern IntPtr getCpuID1(); 
    static void Main()
    {
    	string CPU_ID1 = "";
        int s1 = (int)getCpuID1();					//  dll getCpuID1  
        CPU_ID1 = String.Format("{0:X8}", s1);   	//            ...
        MessageBox.Show(CPU_ID1);					//     ,  CPU_ID1  
    }
}

좋은 웹페이지 즐겨찾기