Intelligentedu Intelligentedu
Best New Free Computer IT Training Tutorial Resources Melhor novo computador que treinamento gratuito Tutorial recursos
Translate to EnglishÜbersetzen Sie zum Deutsch/GermanTraduzca al Español/SpanishTraduisez au Français/FrenchTraduca ad Italiano/ItalianTraduza ao Português/Portuguese日本語に翻訳しなさい /Japanese
한국어에게 번역하십시오/Korean中文翻译/Chinese Simplified中文翻译/Chinese Traditionalترجمة الى العربية/ArabicVertaal aan het Nederlands/DutchΜεταφράστε στα ελληνικά/GreekПереведите к русскому/Russian





Blog Roll: Blog Roll:


Top Links: Início Links:

March 4, 2008 4 de março de 2008

18 C# .NET Tutorials C # 18. NET Tutoriais

Here are Aqui estão 18 C# .NET Tutorials C # 18. NET Tutoriais , from , A partir de brainbell.com , that will teach you how to program using the C# language in the .NET framework. , Que irá ensinar-lhe como usar o programa na linguagem C #. NET. They will teach you the basics with getting started with coding C# and also show you more intermediate and advanced topics, including: Attributes, Interfaces, Expressions and Operators, Program Flow Control, Error Handling with Exceptions, Delegates and Event Handlers, and Multithreaded Programming Eles vão ensinar-lhe o básico em como iniciar a codificação C # e também mostrar mais intermédio e avançado temas, tais como: Atributos, Interfaces, expressões e operadores, Flow Control Program, Error Handling com excepções, Delegados e Event Os manuseadores, e multithread Programação


Object Oriented Programming Object Oriented Programming
The tutorial provides an overview of the terminology of object-oriented programming (OOP) and gives you an understanding of the importance of object-oriented concepts to programming. O tutorial fornece uma visão geral da terminologia de programação orientada a objeto (OOP) e dá-lhe uma compreensão da importância do objeto-orientado conceitos de programação.

Microsoft .NET Microsoft. NET
Get a good understanding of .NET and how the C# language is a part of it. Obter uma boa compreensão do. NET e da forma como a linguagem C # é uma parte dela.

Hello, C# Olá, C #
This C# tutorial gives you an overview of the development process for a simple C# application. C # Este tutorial lhe dá uma visão geral do processo de desenvolvimento de uma aplicação simples C #. It shows you the advantages and disadvantages of the different editors to write in C#, write the "Hello, World" example application to get to know the basic syntax and structure of writing C# applications. Ela mostra-lhe as vantagens e desvantagens dos diferentes editores de escrever em C #, escreve o "Olá, Mundo" exemplo candidatura para conhecer a sintaxe e estrutura básica de escrever aplicações C #. You'll also learn how to compile using the command-line compiler. Você também aprenderá como compilar usando o compilador de linha de comando.

The C# Type System O sistema de tipo C #
In this C# tutorial, you'll learn about the C# type system. C # Neste tutorial, você vai aprender sobre o sistema de tipo C #. Find out how .NET divides types into the two categories: value types and reference types; and then learn how boxing enables a completely object-oriented type system to function efficiently. Saiba como. NET divide os tipos em duas categorias: tipos valor e tipos referência; e, depois, saber como boxe permite um tipo completamente objeto-orientado sistema possa funcionar de forma eficiente. Finally, learn how type casting works in C#, and find out how to start using namespaces. Por último, saber como funciona tipo de vazamento em C #, e descobrir como começar a utilizar namespaces.

C# Classes Classes C #
In this C# tutorial, you'll learn the basics of defining classes in C#, including instance members, access modifiers, constructors, and initialization lists, and then learn how to define static members and the difference between constant and read-only fields. C # Neste tutorial, você vai aprender o básico de definir classes em C #, incluindo membros exemplo, o acesso modificadores de construtores, e de inicialização listas, e, depois, aprender a definir os membros estáticos e constante, a diferença entre os campos como somente-leitura. After that, this tutorial teaches you about destructors and deterministic finalization. Depois disso, esse tutorial ensina você sobre destructors deterministas e finalização. Finally, the tutorial provides a quick discussion of inheritance and C# classes. Por último, o tutorial fornece uma rápida discussão de herança e classes C #.

C# Methods Métodos C #
This C# tutorial shows you how to use the ref and out method parameter keywords and how they enable you to define a method such that it can return more than a single value to the caller. C # Este tutorial mostra como usar o método de parâmetro para fora ref e palavras-chave e como eles permitem que você defina um método que este possa retornar mais de um valor único para o chamador. You'll learn how to define overloaded methods so that multiple methods with the same name can function differently depending on the types and/or number of arguments passed to them. Você vai aprender a definir métodos sobrecarregados de forma que vários métodos com o mesmo nome pode funcionar de maneira diferente, dependendo do tipo e / ou número de argumentos passados para eles. Then you'll learn how to handle situations in which you don't know the exact number of arguments a method will have until run time. Então você vai aprender como lidar com situações em que você não sabe o número exato de argumentos de um método terá até correr o tempo. Finally, discussion of virtual methods and how to define static methods. Por último, discussão de métodos e virtual como definir métodos estáticos.

C# Properties, Arrays, and Indexers C # Properties, arrays, e indexadores
In this C# tutorial, you'll learn about properties, arrays, and indexers because these language features share a common bond. C # Neste tutorial, você vai aprender sobre propriedades, arrays, e indexadores porque estas funcionalidades partilham uma língua comum caução. They enable you, the C# class developer, to extend the basic class/field/method structure of a class to expose a more intuitive and natural interface to your class's members. Eles permitem-lhe, a classe C # desenvolvedor, para alargar a base classe / campo / método estrutura de uma classe para expor uma interface mais intuitiva e natural para os membros da sua classe.

C# Attributes C # Atributos
C# attributes provide you a generic means of associating information (as annotations) with your defined C# types. C # atributos genéricos de lhe proporcionar um meio de associar informações (como anotações) com seus tipos definidos C #. You can use attributes to define design-time information (such as documentation information), run-time information (such as the name of a database column for a field), or even run-time behavioral characteristics (such as whether a given member is "transactionable"?that is, capable of participating in a transaction). Você pode usar atributos para definir concepção informação em tempo (como a documentação Informação), informação em tempo de execução (tais como o nome de um banco de dados para a coluna de um campo), ou até mesmo em tempo de execução características comportamentais (por exemplo, se um determinado membro é "transactionable"? isto é, capazes de participar em uma transação).

C# Interfaces C # Interfaces
C# Interfaces allow you to define behavioral characteristics, or abilities, and apply those behaviors to classes irrespective of the class hierarchy. C # Interfaces permitem-lhe definir características comportamentais, ou de habilidades, e aplicar esses comportamentos de classes, independentemente da classe hierarquia.

C# Expressions and Operators C # Expressões e Operadores
This C# tutorial shows you how to express assignments and comparisons through the use of operators. C # Este tutorial mostra como atribuições e comparações para exprimir através da utilização de operadores. You'll learn what operators are and how operator precedence is determined in C#, along with specific categories of expressions for doing such things as performing math, assigning values, and making comparisons between operands. Você vai aprender quais são os operadores e como operador precedência é determinada em C #, juntamente com as categorias de expressões específicas para fazer coisas como desempenho matemático, atribuindo valores, e fazer comparações entre os operandos.

C# Program Flow Control C # Programa Controle de fluxo
The statements that enable you to control program flow in a C# application fall into three main categories: selection statements, iteration statements, and jump statements. As declarações que permitem o controle de fluxo em um programa C # candidatura podem ser divididas em três categorias principais: selecção declarações, declarações iteração, e salto declarações. In this C# tutorial, you'll learn how to use each of these statement types to control structure flow. C # Neste tutorial, você vai aprender a utilizar cada um desses tipos de controlar a estrutura declaração fluxo.

C# Error Handling with Exceptions C # Error Handling com exceções
This C# tutorial teaches you the general mechanics and basic syntax of exception handling, how exception handling compares with the more prevalent methods of error handling. C # Este tutorial ensina-lhe a mecânica geral e de sintaxe básica de excepção manipulação, como exceção movimentação compara com o erro mais prevalente métodos de manipulação. You will also learn about .NET exception-handling issues, such as using the Exception class and deriving your own exception classes and issue of properly designing your system to use exception handling. Você também aprenderá sobre. NET excepção do tratamento de questões, tais como a exceção usando sua própria classe e decorrentes excepção aulas e emissão de projetar corretamente o seu sistema para usar excepção manuseio.

C# Operator Overloading and User-Defined Conversions C # Sobrecarga de Operador definido pelo usuário, e Conversões
This C# tutorial teaches you how to use two closely related features of C# that give you the capability to create structure and class interfaces that are easier and more intuitive to use: operator overloading and user-defined conversions. C # Este tutorial ensina como usar dois intimamente relacionada características do C # que dar-lhe a capacidade de criar interfaces estrutura e de classe que são mais fácil e mais intuitiva de usar: operador definido pelo usuário, sobrecarregando e conversões.

C# Delegates and Event Handlers C # Delegados e Event Os manuseadores
In this C# tutorial, learn how to code using delegates, how they compare to interfaces, the syntax used to define them, and the different problems that they were designed to address. C # Neste tutorial, aprender a usar código delegados, como eles são comparados aos interfaces, a sintaxe usada para defini-los, e os diversos problemas que eles foram concebidos para resolver. You'll also see several examples of using delegates with both callback methods and asynchronous event handling. Você também verá vários exemplos de utilização de delegados com os dois métodos callback evento assíncrono e manuseio.

C# Multithreaded Programming Multithread programação C #
This C# tutorial teaches you the basics, along with more advanced issues regarding the aborting, scheduling, and lifetime management of threads and also discuss thread synchronization with the System.Monitor and System.Mutex classes and the C# lock statement. C # Este tutorial ensina-lhe o básico, juntamente com os mais avançados temas relacionados com a abortar, horários, duração e de gestão de fios e também discutir thread sincronização com o System.Monitor e System.Mutex e as classes C # lock declaração.

Querying Metadata with Reflection Examinando a reflexão metadados
This tutorial explains the reflection API and how you can use it to iterate through an assembly's modules and types and to retrieve the different design-time characteristics of a type. Este tutorial explica o reflexo da API e como você pode usá-lo para iterate através de uma assembléia de módulos e os tipos e para recuperar a concepção de tempo diferentes características de um tipo. You'll also learn about several advanced usages of reflection, such as dynamically invoking methods and use type information (through late binding) and even creating and executing MSIL code at run time. Você também vai aprender sobre vários usos de reflexão avançadas, tais como dinamicamente invocar métodos e tipo de utilização informações (através de tarde obrigatório) e até mesmo criar e executar código MSIL em tempo de execução.

Interoperating with Unmanaged Code Interoperabilidade com código não gerenciado
Unmanaged code refers to code that is not managed, or controlled, by the .NET runtime. Refere-se ao código não gerenciado código que não é gerido, ou controlada, com o. NET runtime. This tutorial cover the three main examples of unmanaged code in .NET: Platform Invocation Services, Unsafe code , COM interoperability. Este tutorial abrange as três principais exemplos de código não gerenciado no. NET: Platform Invocation Services, Inseguro código, COM interoperabilidade.

Working with Assemblies Trabalhando com Assembléias
This tutorial describes the major advantages of using assemblies, including the packaging and versioning of your .NET components. Este tutorial descreve as principais vantagens da utilização de conjuntos, incluindo a embalagem e versões de seu. NET componentes.

Popularity: 23% [ Popularidade: 23% [ ? ? ] ]

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages. Compartilhe e divirta: Estes ícones social bookmarking link para sites onde os leitores podem compartilhar e descobrir novas páginas da web.
  • blogmarks
  • del.icio.us
  • Furl
  • Reddit
  • Shadows
  • YahooMyWeb
  • StumbleUpon
  • Digg
Related Posts: Posts relacionados:
  • 5,000 pages of Software and Computer Tutorials 5.000 páginas de Programas de Computador e Tutoriais
  • Lots of PHP Tutorials Lotes de PHP Tutoriais
  • PHP Programming Tutorials PHP Programming tutorials
  • Perl Programming Tutorials Perl Programming tutorials
  • 222 Open Source Online Books and Tutorials 222 Open Source livros on-line e tutoriais

  • Filed under: Arquivado em: Best New Free Computer IT Training Tutorial Resources Melhor novo computador que treinamento gratuito Tutorial recursos — computer_teacher @ 10:17 pm -- Computer_teacher @ 10:17 pm

    No Comments No Comments »

    No comments yet. Ainda não há comentários.

    RSS feed for comments on this post. RSS feed para comentários sobre este post.

    Leave a comment Deixe um comentário

    You must be Você deve estar logged in autenticado em to post a comment. para escrever um comentário.



    Powered by Powered by WordPress WordPress