04 2016 档案
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace 计时器 ...
阅读全文
摘要://检测硬件改变 protected override void WndProc(ref Message m) { const int WM_DEVICECHANGE = 0x219; if (m.Msg == WM_DEVICECHANGE) { if...
阅读全文
摘要:int main() { char* p = (char*)malloc(32); free(p); return 0; }
阅读全文