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 TutorialsEvent Handler
Microsoft Office …
Windows Form ( also called WinForms) is a .NET Framework object that allows the development of “traditional” Windows desktop applications.
Related TutorialsXHTML (eXtensible HyperText Markup Language)
Stack
Data …
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 TutorialsStructure
CLR (Common Language Runtime)
Code behind
Service
XSL (eXtensible …
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 Tutorials.NET Framework
SOAP (Simple Object Access Protocol)
GC …
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 TutorialsManaged code
Web service
XPath (XML Path Language)
Module
UDDI (Universal Description, Discovery, …
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 TutorialsObject
Property
XSLT (eXtensible Stylesheet Language …
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 TutorialsException Handling
Finalize
Exception
XML (eXtensible Markup Language)
Xlink (XML …
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 TutorialsCasting
Strong name
Caching
Single-module …