vb.net

VB.NET (Visual Basic .NET)

VB.NET is an object-oriented computer programming language which is implemented on the .NET Framework. The language’s features include inheritance, method overloading, structured exception handling, and more. These capabilities make it easier than ever to create .NET applications, including Windows applications, web services, and web applications Microsoft currently supplies two major implementations of Visual Basic: Microsoft Visual Studio, which …

Learn more

XDA

XDA is a consolidated development environment that allows programs to be created for Windows, XBoxes, …

Learn more

Windows Form

Windows Form ( also called WinForms) is a .NET Framework object that allows the development of “traditional” Windows …

Learn more

Visual Studio

This development tool contains a rich set of productivity and debugging features. The Visual Studio setup CDs (or DVD) include the complete .NET Framework, so you won’t need to download …

Learn more

Variable

Variable is a typed storage location in memory. The type of the variable determines what kind of data it can store. Examples of variables include local variables, array elements, parameters, instance fields and …

Learn more

Value types

Value types is a variable that stores actual data rather than a reference to data, which is stored elsewhere in memory. Simple value types include the integer, floating point number, decimal, character, and boolean types. Value types have the minimal memory overhead and are the fastest …

Learn more

Unmanaged data

Unmanaged data is data (i.e. memory) that is allocated outside of the control of the CLR. Unmanaged data can be access by both managed and …

Learn more

Unmanaged code

Unmanaged (also called unsafe) code is any code that executes outside of the control of the .NET CLR. Unmanaged code may perform unsafe operations, such as declare and operate on pointers, take the address of a variable, and perform conversions between pointers and integral types. Uses of unmanaged code include calling operating system APIs, interfacing to COM components, …

Learn more

Unmanaged

In .NET, any objects or resources not allocated and controlled by the CLR are considered unmanaged (e.g., Windows handles and calls to the …

Learn more

Unboxing

Unboxing is a conversion of a reference type object (i.e. System.Object) to its value type instance. Unboxing must be explicitly performed in code, usually in the form of a …

Learn more