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 …
vb.net
XDA is a consolidated development environment that allows programs to be created for Windows, XBoxes, and more.
Related TutorialsResource
UDDI (Universal Description, Discovery, and Integration)
Unmanaged resources
Isolated storage
XSLT (eXtensible Stylesheet …
Windows Form ( also called WinForms) is a .NET Framework object that allows the development of “traditional” Windows desktop applications.
Related TutorialsMicrosoft Office Access
Web Form
Assembly cache
Configuration …
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 it separately.
Related TutorialsService
Xlink (XML Linking Language)
XSD (XML …
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 static fields.
Related TutorialsJIT (Just In Time)
Class …
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 to access
Related TutorialsDestructor
ADO.NET (ActiveX Data Object for …
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 unmanaged code.
Related TutorialsRemoting
Identifiers
Casting
Single-module assembly
Unmanaged …
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, …
In .NET, any objects or resources not allocated and controlled by the CLR are considered unmanaged (e.g., Windows handles and calls to the Win32 API).
Related TutorialsType-safe
Object type
Managed execution
Side-by-Side Execution
GAC (Global …
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 cast operation.
Related TutorialsNamespace
Event
Pre-defined types
Managed …