Visual Basic .NET
From Wikibooks, the open-content textbooks collection
(Redirected from Programming:Visual Basic .NET)
Visual Basic .NET is a multi-purpose computer programming language from Microsoft that is suitable for most development needs. The language is designed with Rapid Application Development in mind, providing several tools to shorten development time. This WikiBook introduces Visual Basic.NET language fundamentals and covers a variety of the base class libraries (BCL) provided by the .NET Framework.
Contents |
[edit] Introduction
- Basic syntax
- Describes the basics in how the applications you write will be interpreted.
- Variables
[edit] Basics
- Inheritance
- Interfaces
- Abstract and partial classes
- Object Lifetime
- Enumerations
- A set of related constants defining a value type.
[edit] Classes
- Modules
- A special class for exposing shared functions and variables.
- Namespaces
- Giving your code its own space to live in.
- Classes
- The blueprints of objects that describes how they should work.
- Objects
- Cornerstones of any object-oriented programming language, objects are the tools you use to perform work.
- Encapsulation and accessor levels
- Explains protection of object states by encapsulation.
- The IDisposable Interface
[edit] Advanced Data Structure
- The .NET assembly
- All .NET solutions have their components contained in assemblies.
- .NET Framework Overview
- An overview of the .NET class library used in VB.NET
- The .NET framework
- A language is merely a way of communication. The .NET framework represents the tools at your disposal to get actual work done.
- Security
- How security is used in the .NET framework
[edit] Graphics
Hello, this is the graphics section, please add information to me.xx
[edit] GDI+
GDI+ is a way to draw simple graphics and strings on a Form.
[edit] MS Office Automation
Manipulating MS Office documents and even MS Office itself from VB.NET
[edit] External Links
- Learning Visual Basic .NET in 5 minutes A simple tutorial that teaches you a few basics.