摘要: View Code using System.IO;using System.Runtime.InteropServices; [DllImport("kernel32.dll")]public static extern IntPtr _lopen(string lpPathName, int iReadWrite); [DllImport("kernel32.dll")]public static extern bool CloseHandle(IntPtr hObject); public const int OF_READWRITE = 2;pu 阅读全文
posted @ 2013-01-05 11:07 宋佳莉 阅读(651) 评论(0) 推荐(0) 编辑