|
Pointers and Unmanaged Memory Handling in VB.NET |
|
Visual Basic as a language never had provision of pointers or raw memory management as in C or C++. However, in VB.NET you can do so using certain .NET framework structures and classes. They include IntPtr, Marshal and GCHandle. |
|
Posted On : 22 Nov 2003 |
|
|
Creating Collection Classes in C# |
|
Collection classes are used frequently in .NET. For example, classes like ArrayList, NamevalueCollection, HashTable are collection classes. One peculiar thing of collection classes is that they can be used in foreach(...) loop in C#. |
|
Posted On : 23 Feb 2002 |
|
|
Understanding Access Modifiers in VB.NET |
|
Access modifiers decide accessibility of your class or class member. There are five accessibility levels in VB.NET. This article examines all of them with examples. |
|
Posted On : 16 Feb 2002 |
|
|
Overview of Changes from VB6 to VB.NET |
|
With release of Microsoft .NET platform, Visual Basic has emerged into a fully objected oriented language (dubbed VB.NET). With these radical changes, though, the learning curve between VB6 and VB.NET might be reasonably high even for experienced programm |
|
Posted On : 04 Jun 2001 |
|