Recursos Linguagem Visual Basic

Os tópicos a seguir apresente e discuta os componentes essenciais do Visual Basic, um objeto-orientada a linguagem de programação. After creating the user interface for your application using forms and controls, you need to write the code that defines the application's behavior. Como ocorre com qualquer linguagem de programação modernas, Visual Basic oferece suporte a um número de construções de programação comuns e elementos de linguagem.

If you have programmed in other languages, much of the material covered in this section might seem familiar. Enquanto a maioria das construções é semelhante àquelas em outros idiomas, o evento-orientado a natureza do Visual Basic apresenta algumas diferenças sutis.

If you are new to programming, the material in this section serves as an introduction to the basic building blocks for writing code. Depois de compreender as noções básicas, você pode criar poderosos aplicativos usando Visual Basic.

Nesta seção

  • Arrays
    Discusses making your code more compact and powerful by declaring and using arrays, which hold multiple related values.

  • Collections
    Fornece uma visão geral das coleções.

  • Constants and Enumerations
    Discusses storing unchanging values for repeated use, including sets of related constant values.

  • Control Flow
    Shows how to regulate the flow of your program's execution.

  • Data Types
    Describes what kinds of data a programming element can hold and how that data is stored.

  • Declared Elements
    Covers programming elements you can declare, their names and characteristics, and how the compiler resolves references to them.

  • Delegates
    Fornece uma introdução aos delegados, e como eles são usados em Visual Basic.

  • Associação inicial e tardia (Visual Basic)
    Describes binding, which is performed by the compiler when an object is assigned to an object variable, and the differences between early-bound and late-bound objects.

  • Events
    Shows how to declare and use events.

  • Interfaces
    Describes what interfaces are and how you can use them in your applications.

  • LINQ
    Fornece links para tópicos que introduzem LINQ (consulta integrada à linguagem) recursos e programação.

  • Objetos e Classes
    Provides an overview of objects and classes, how they are used, their relationships to each other, and the properties, methods, and events they expose.

  • Operadores e expressões
    Describes the code elements that manipulate value-holding elements, how to use them efficiently, and how to combine them to yield new values.

  • Procedures
    Descreve Sub, Function, Property, e Operator procedimentos, bem como tópicos avançados como recursiva e procedimentos sobrecarregados.

  • Statements
    Descreve instruções de declaração e executável .

  • Strings
    Fornece links para tópicos que descrevem os conceitos básicos sobre o uso de seqüências de caracteres em Visual Basic.

  • Variables
    Apresenta as variáveis e descreve como usá-las em Visual Basic.

  • XML
    Fornece links para tópicos que descrevem como usar XML no Visual Basic.

Seções relacionadas