Allocate memory - Win32 vs. Windows Form March 06, 2008 int c; //Win32 int *b = new int(1); // 一塊存 int 的記憶體空間 //Windows Form int ^b = gcnew int(1); // 一塊存 int 的記憶體空間 Share Get link Facebook X Pinterest Email Other Apps Labels VC++.NET Share Get link Facebook X Pinterest Email Other Apps Comments
Comments