New Features in VB 9.0 and C# 3.0
The following is a list of some new language-specific features available to C# 3.0 and VB 9.0, available in Visual
Read moreThe following is a list of some new language-specific features available to C# 3.0 and VB 9.0, available in Visual
Read moreA C++ DLL exports one function having its only parameter as a pointer to another function: #define AFX_EXT_CLASS __declspec(dllexport)typedef void
Read moreThe DefaultEvent attribute indicates a class’s default event. If the class is a component and you double-click on it in
Read moreClasses and structures can contain members that occupy less storage than an integral type. These members are specified as bit
Read moreFirst, add the following declaration to stdafx.h: // TODO: reference additional headers your program requires here #include “windows.h” For example,
Read moreWrite binary data to file using namespace std; BYTE* buffer; ofstream fout(“file.dat”, ios::binary); fout.write((char *)(&buffer), sizeof(number)); fout.close(); Reference: Simple File
Read moreEarly-binding: Variable types are defined at compile time (e.g. string, integers): String st = “hello world”;Boolean ok = st.Contains(“hello”); The
Read more