This is our internal check list to create a new Windows Forms Project… Create a ‘Visual C#’ > ‘Windows’ > ‘Windows Forms Application’. Once created:- Re-name the created form to frmMain.h by right clicking it in the solution explorer and selecting ‘Rename’ Click Yes to updating all references. Things To Add To The Default Form […]
All posts by
Language Specifications
Good Resources http://msdn.microsoft.com/en-us/vcsharp/aa336809.aspx
C# for C++ programmers
Good Resources C# FAQ for C++ programmers Some Key Differences Classes and structs Classes and structs are almost the same in C++ – this is not true for C#. In C#, structs are value types (instances stored directly on the stack, or inline within heap-based objects), whereas classes are reference types (instances stored on the […]