Intelligentedu Intelligentedu
Best New Free Computer IT Training Tutorial Resources Miglior nuovo computer è libero di formazione tutorial risorse
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: Roll blog:


Top Links: Top Links:

March 4, 2008 4 Marzo 2008

18 C# .NET Tutorials 18 C #. NET Tutorial

Here are Sono qui 18 C# .NET Tutorials 18 C #. NET Tutorial , from , Da brainbell.com , that will teach you how to program using the C# language in the .NET framework. , Che vi insegnerà come programmare utilizzando il linguaggio C # in. NET Framework. 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 Essi vi insegnerà le basi per iniziare con codifica con C # e anche visualizzare ulteriori intermedio e avanzato argomenti, tra cui: gli attributi, le interfacce, espressioni e gli operatori, Programma di Controllo di flusso, di gestione degli errori con eccezioni, i delegati e gestori di eventi e di programmazione multithread


Object Oriented Programming Programmazione orientato agli oggetti
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. La guida fornisce una panoramica della terminologia della programmazione orientata agli oggetti (OOP) e vi dà la comprensione del importanza di object-oriented concetti di programmazione.

Microsoft .NET Microsoft. NET
Get a good understanding of .NET and how the C# language is a part of it. Ottenere una buona comprensione di. NET e come il linguaggio C # è una parte di essa.

Hello, C# Ciao, C #
This C# tutorial gives you an overview of the development process for a simple C# application. Questo C # tutorial vi offre una panoramica del processo di sviluppo per una semplice applicazione 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. Mostra i vantaggi e gli svantaggi dei diversi editor per scrivere in C #, scrivere il "Ciao, mondo" esempio applicazione di conoscere la sintassi di base e la struttura di scrivere applicazioni C #. You'll also learn how to compile using the command-line compiler. Imparerai inoltre come compilare utilizzando la riga di comando del compilatore.

The C# Type System C # Tipo di sistema
In this C# tutorial, you'll learn about the C# type system. In questo tutorial C #, potrai conoscere il C # tipo di sistema. 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. Scopri come. NET tipi divide in due categorie: i tipi di valore e tipi riferimento, e poi imparare consente a un pugilato completamente object-oriented tipo di sistema di funzionare in modo efficiente. Finally, learn how type casting works in C#, and find out how to start using namespaces. Infine, imparare come funziona il tipo di colata in C #, e scoprire come per iniziare a utilizzare spazi dei nomi.

C# Classes Classi 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. In questo tutorial C #, potrai imparare le basi della definizione di classi in C #, tra cui membri di istanza, l'accesso modificatori, costruttori, elenchi di inizializzazione e, quindi imparare a definire statica membri e la differenza tra il costante e di sola lettura campi. After that, this tutorial teaches you about destructors and deterministic finalization. Dopo di che, questa guida vi insegna circa distruttori deterministici e completamento. Finally, the tutorial provides a quick discussion of inheritance and C# classes. Infine, la guida fornisce una rapida discussione di successione e di classi C #.

C# Methods C # Metodi
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 # questo tutorial vi mostra come usare il rif metodo e fuori parametro parole chiave e il modo in cui ti consentono di definire un metodo in modo da poter tornare più di un solo valore per il chiamante. 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. Potrai imparare a definire metodi di overload in modo che più metodi con lo stesso nome può funzionare in modo diverso a seconda del tipo e / o del numero di argomenti passati a loro. 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. Quindi potrai imparare a gestire situazioni in cui non si conosce il numero esatto di argomenti un metodo fino a quando avrà il tempo di esecuzione. Finally, discussion of virtual methods and how to define static methods. Infine, la discussione di metodi e virtuale come definire metodi statici.

C# Properties, Arrays, and Indexers C # Proprietà, Arrays, e Indexers
In this C# tutorial, you'll learn about properties, arrays, and indexers because these language features share a common bond. In questo tutorial C #, potrai conoscere le proprietà, gli array, e indexers perché queste caratteristiche lingua condividere un legame comune. 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. Essi consentono, la classe C # sviluppatore, di estendere la base di classe / settore / metodo struttura di una classe per esporre una più intuitivo e naturale interfaccia per la vostra classe membri.

C# Attributes Attributi C #
C# attributes provide you a generic means of associating information (as annotations) with your defined C# types. C # attributi di fornire un generico mezzo di associare informazioni (come annotazioni) con il tuo definiti tipi di 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). È possibile utilizzare attributi per definire la progettazione di informazioni in tempo (ad esempio, documentazione informazione), run-time di informazioni (come ad esempio il nome di una banca di dati colonna per un campo), o anche di run-time comportamentali caratteristiche (ad esempio se un determinato Stato è "transactionable"? cioè capaci di partecipare in una transazione).

C# Interfaces C # Interfacce
C# Interfaces allow you to define behavioral characteristics, or abilities, and apply those behaviors to classes irrespective of the class hierarchy. C # interfacce permettono di definire le caratteristiche comportamentali, o abilità, e applicare tali comportamenti per classi, indipendentemente dalla classe di gerarchia.

C# Expressions and Operators C # Espressioni e operatori
This C# tutorial shows you how to express assignments and comparisons through the use of operators. C # questo tutorial vi mostra come le assegnazioni di esprimere e di confronto attraverso l'uso di operatori. 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. Per scoprire quello che gli operatori sono e come operatore di precedenza è determinato in C #, insieme a specifiche categorie di espressioni per fare queste cose come eseguire la matematica, l'assegnazione di valori, e fare paragoni tra operandi.

C# Program Flow Control C # programma di controllo di flusso
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. Le dichiarazioni che consentono di programma di controllo di flusso in C # si dividono in tre categorie principali: le dichiarazioni di selezione, iterazione dichiarazioni, e vai dichiarazioni. In this C# tutorial, you'll learn how to use each of these statement types to control structure flow. In questo tutorial C #, potrai imparare a utilizzare ciascuno di questi tipi di dichiarazione struttura di controllo di flusso.

C# Error Handling with Exceptions C # di gestione degli errori con eccezioni
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. Questo C # tutorial vi insegna la meccanica generale e sintassi di base di gestione delle eccezioni, come gestione delle eccezioni a confronto con i più diffusi metodi di gestione degli errori. 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. Potrai anche apprendere. NET eccezione di gestione questioni, come ad esempio con l'eccezione di classe e il tuo derivanti eccezione classi e il rilascio di progettare correttamente il sistema in uso gestione delle eccezioni.

C# Operator Overloading and User-Defined Conversions C # Operatore sovraccarico e User-Defined Conversioni
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. Questo C # tutorial vi insegna come usare due elementi strettamente connessi di C # che le permettono di avere la capacità di creare la struttura di classe e interfacce che sono più facile e più intuitivo da usare: sovraccarico operatore e utente-definito conversioni.

C# Delegates and Event Handlers C # Delegati e gestori di eventi
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. In questo tutorial C #, imparare a utilizzare il codice delegati, come si confronta con le interfacce, la sintassi utilizzati per definirli, e dei diversi problemi che erano stati concepiti per affrontare. You'll also see several examples of using delegates with both callback methods and asynchronous event handling. Potrai anche vedere alcuni esempi di utilizzo con entrambi i delegati di callback e metodi di gestione degli eventi asincroni.

C# Multithreaded Programming C # programmazione multithread
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. Questo C # tutorial vi insegna le basi, insieme a questioni più avanzate in materia di abortire, programmazione, gestione e la durata di thread e thread anche discutere la sincronizzazione con il System.Monitor e System.Mutex classi e il blocco C #.

Querying Metadata with Reflection Interrogazione di metadati a riflessione
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. Questo tutorial spiega le API di riflessione e come si può utilizzare per scorrere attraverso un insieme di moduli e tipi e per recuperare i diversi design-time caratteristiche di un 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. Potrai anche ottenere informazioni sugli usi più avanzati di riflessione, come ad esempio invocando dinamicamente i metodi e utilizzare le informazioni di tipo (attraverso l'associazione tardiva) e persino la creazione e l'esecuzione di codice MSIL in fase di esecuzione.

Interoperating with Unmanaged Code L'interoperatività con codice non gestito
Unmanaged code refers to code that is not managed, or controlled, by the .NET runtime. Non gestito codice si riferisce al codice che non è gestita, o controllati, di. NET runtime. This tutorial cover the three main examples of unmanaged code in .NET: Platform Invocation Services, Unsafe code , COM interoperability. Questo tutorial coprire le tre principali esempi di codice non gestito. NET: Piattaforma Invocazione Servizi, il codice non sicuri, COM interoperabilità.

Working with Assemblies Lavorare con Assemblee
This tutorial describes the major advantages of using assemblies, including the packaging and versioning of your .NET components. Questo tutorial descrive i principali vantaggi di usare le assemblee, tra cui l'imballaggio e la versione del vostro. NET componenti.

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

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages. Condividere e beneficiano: Queste icone link a Social Bookmarking siti in cui i lettori possono condividere e scoprire nuove pagine web.
  • blogmarks
  • del.icio.us
  • Furl
  • Reddit
  • Shadows
  • YahooMyWeb
  • StumbleUpon
  • Digg
Related Posts: Posti connessi:
  • 5,000 pages of Software and Computer Tutorials 5.000 pagine di Computer Software e Tutorial
  • Lots of PHP Tutorials Un sacco di tutorial php
  • PHP Programming Tutorials Tutorial di programmazione PHP
  • Perl Programming Tutorials Tutorial di programmazione perl
  • 222 Open Source Online Books and Tutorials 222 open source online libri e tutorials

  • Filed under: Archiviato in: Best New Free Computer IT Training Tutorial Resources Miglior nuovo computer è libero di formazione tutorial risorse — computer_teacher @ 10:17 pm -- Computer_teacher @ 10:17 pm


    Over 300 Computer and Programming eBooks Più di 300 computer e programmazione eBook

    Here is an Qui è un ebook repository eBook repository containing over 300 technical, computer, and programming ebooks covering many areas. contenente più di 300 tecnici, computer, ebooks e di programmazione che copre molti settori. These computer ebooks are in pdf format. Ebooks questi computer sono in formato pdf.


    eBook Topics : eBook Temi:
    - Computer Networking -- Reti
    - Wireless LANs -- Wireless LAN
    - Perl Programming -- Perl Programmazione
    - Linux Programming -- Linux Programmazione
    - Linux TIps and Tricks -- Linux Tips and Tricks
    - 3D Graphics Programming -- Programmazione Grafica 3D
    - Technical Writing -- Tecniche di scrittura
    - Artificial Intelligence -- Intelligenza Artificiale
    - PC Hardware -- PC Hardware
    - Photoshop -- Photoshop
    - Neural Networks -- Reti Neurali
    - Computer Security -- Sicurezza
    - Cisco, CCNA -- Cisco, CCNA
    - Algorithms -- Algoritmi
    - DNS -- DNS
    - Database Design -- Database Design
    - Electrical Circuits -- Circuiti elettrici
    - Electronic Concepts -- Electronic Concetti
    - Extreme Programming -- Extreme Programming
    - C++ Programming -- C + + Programmazione
    - Java Swing -- Java Swing
    - XML Programming in Java -- XML di programmazione in Java
    - SQL -- SQL
    - Linux Command Reference -- Linux comando di riferimento
    - Linux Shell Programming -- Linux programmazione shell
    - Visual Basic .NET ( -- In Visual Basic. NET ( VB.NET )
    - Microsoft Office VBA -- Microsoft Office VBA
    - Network+ Certification -- Certificazione Network +
    - Windows Network Programming -- Programmazione di rete di Windows
    - C# Programming (C Sharp) -- Di programmazione C # (C Sharp)
    - PHP with MySQL -- PHP con MySQL
    - Samba -- Samba
    - UML -- UML
    - VPN -- VPN
    - Windows XP -- Windows XP
    - CSS -- CSS
    - C++ Reverse Engineering -- C + + Reverse Engineering

    Popularity: 16% [ Popularity: 16% [ ? ? ] ]

    Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages. Condividere e beneficiano: Queste icone link a Social Bookmarking siti in cui i lettori possono condividere e scoprire nuove pagine web.
    • blogmarks
    • del.icio.us
    • Furl
    • Reddit
    • Shadows
    • YahooMyWeb
    • StumbleUpon
    • Digg
    Related Posts: Posti connessi:
  • 120 Computer and Network Security eBooks 120 computer e la rete di sicurezza eBook
  • 18 Free Computer Ebooks 18 anni gratis computer ebooks
  • 150 Free Computer Ebooks 150 Libera computer ebooks
  • 246 Freely Available eBooks 246 liberamente disponibile eBook
  • Over 450 Computer and Programming Ebooks Oltre 450 computer e programmazione Ebooks

  • Filed under: Archiviato in: Free Computer and IT Books Libero computer e libri — computer_teacher @ 10:29 pm -- Computer_teacher @ 10:29 pm


    March 10, 2008 10 marzo 2008

    Freely available eBooks from ebooks-space.com EBook liberamente disponibili da ebooks-space.com

    This site offers links to many Questo sito offre i link a molti freely available Computer eBooks liberamente disponibili computer eBook , from , Da ebooks-space.com eBooks-space.com , in the following technical areas: PHP, Perl, MySQL, Oracle, Java, J2me, JSP, .NET Framework, , Nei seguenti settori tecnici: PHP, Perl, MySQL, Oracle, Java, J2ME, JSP,. NET Framework, ASP.net , VB.net , C programming, C++ programming, C# programming, Ajax, Networking, SQL Server, XML, and Windows. , Di programmazione C, C + + di programmazione, di programmazione C #, Ajax, Networking, SQL Server, XML, e Windows. The ebooks are located on download sites, such as rapidshare.de. I ebooks si trovano a scaricare siti, come ad esempio rapidshare.de. These computer ebooks are available in the following formats: PDF, CHM, DOC, HTML, ZIP, RAR. Ebooks questi computer sono disponibili nei seguenti formati: PDF, CHM, DOC, HTML, ZIP, RAR.

    eBook Categories Categorie eBook
    - -- .Net . Net
    - -- AJAX
    - -- C / C++ C / C + +
    - -- CSS
    - -- DB2
    - -- Google
    - -- Java
    - -- MySQL
    - -- Networking Messa in rete
    - -- Oracle
    - -- Photoshop
    - -- PHP
    - -- SQL

    Popularity: 12% [ Popularity: 12% [ ? ? ] ]

    Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages. Condividere e beneficiano: Queste icone link a Social Bookmarking siti in cui i lettori possono condividere e scoprire nuove pagine web.
    • blogmarks
    • del.icio.us
    • Furl
    • Reddit
    • Shadows
    • YahooMyWeb
    • StumbleUpon
    • Digg
    Related Posts: Posti connessi:
  • More Freely Available Ebooks via Google Maggiori informazioni liberamente disponibili tramite Google ebooks
  • Free Ebooks Center Post with 7 Freely Available Ebooks Free ebooks centro post con 7 liberamente disponibili ebooks
  • Many Freely Available eBooks Liberamente disponibili molti ebooks
  • 144 Freely Available Computer Ebooks 144 liberamente disponibili computer ebooks
  • 246 Freely Available eBooks 246 liberamente disponibile eBook

  • Filed under: Archiviato in: Free Computer and IT Books Libero computer e libri — computer_teacher @ 12:47 pm -- Computer_teacher @ 12:47 pm


    March 17, 2008 17 marzo 2008

    11 Computer Networking Tutorials 11 Reti Tutorial

    Here are Sono qui 11 Computer Networking Tutorials 11 Reti Tutorial , from , Da brainbell.com . These cover and teach you about the following networking technologies: Cabling, Connectors, Security, Networking Devices, OSI Model, TCP/IP, Networking Troubleshooting, VLANs, and WANs. Questi copertina e vi insegni sui seguenti tecnologie di rete: cavi, connettori, la sicurezza, dispositivi di rete, modello OSI, TCP / IP, Risoluzione dei problemi di rete, VLAN e reti WAN.


    Cabling Standards Media And Connectors Media norme di cablaggio e connettori
    This tutorial focuses on the media and connectors used in today's networks. Questo tutorial si concentra sui media e connettori utilizzati in reti di oggi. In addition to media and connectors, this tutorial identifies the characteristics of the IEEE 802.3 standard and its variants. In aggiunta ai mezzi di informazione e connettori, questo tutorial identifica le caratteristiche di 802,3 IEEE standard e le sue varianti.

    Introduction to Networking Introduzione alla rete
    This tutorial reviews general network considerations such as the various topologies used on today's networks, LANs, PANs, and WANs, and the IEEE standards. Questo tutorial recensioni considerazioni generali di rete come ad esempio le diverse topologie utilizzato su reti di oggi, LAN, padelle, e reti WAN, e le norme IEEE.

    Network Operating Systems And Client Connectivity Sistemi operativi di rete e client di connettività
    This tutorial looks at a number of operating systems that are widely used in today's network environments. Questo tutorial prende in esame una serie di sistemi operativi che sono ampiamente utilizzati oggi in ambienti di rete.

    Network Security Sicurezza di rete
    In this tutorial, we will examine how security measures such as port blocking, password policies, and encryptionfit into network security strategy. In questa esercitazione, che prenderemo in esame le misure di sicurezza come ad esempio il blocco dei porti, le politiche per le password e encryptionfit in rete strategia di sicurezza. We also take a quick look at the purpose and characteristics of extranets and intranets. Abbiamo anche un rapido sguardo a lo scopo e le caratteristiche di Extranet e le Intranet.

    Networking Devices I dispositivi di rete
    This tutorial introduces commonly used networking devices, and, although it is true that you are not likely to encounter all of the devices mentioned in this tutorial on the exams of MCSE & Network+, you can be assured of working with at least some of them. Questa guida introduce comunemente utilizzati dispositivi di rete, e, se è vero che non siete in grado di incontrare tutti i dispositivi di cui al presente esercitazione sul esami di MCSE Network & +, si può essere certi di lavoro con almeno alcuni di essi.

    OSI Model and Network Protocols Modello OSI e protocolli di rete
    This tutorial looks at the OSI model and describes how it relates to real-world networking. Questo tutorial prende in esame il modello OSI e viene descritto come esso si riferisce al mondo reale in rete. It also examines how common network devices relate to the OSI model. Esso esamina anche come dispositivi di rete comune riguardano il modello OSI.

    TCP/IP (Transmission Control Protocol Internet Protocol) TCP / IP (Transmission Control Protocol Internet Protocol)
    This tutorial deals with the individual protocols within the protocol suite. Questo tutorial riguarda i singoli protocolli entro la suite di protocolli. The tutorial looks at the function of the individual protocols and their purposes. La guida esamina la funzione dei singoli protocolli e le loro finalità.

    Troubleshooting Connectivity Risoluzione dei problemi di connettività
    This tutorial identifies the tools that are used in the troubleshooting process and identifies scenarios in which these tools can be used. Questo tutorial individua gli strumenti utilizzati nel processo di risoluzione dei problemi e individua scenari in cui questi strumenti possono essere utilizzati.

    Troubleshooting and Supporting the Network Risoluzione dei problemi e di sostenere la rete
    This tutorials focuses on all areas of troubleshooting, including troubleshooting best practices and some of the tools and utilities you'll use to assist in the troubleshooting process. Questo tutorial si concentra su tutti i settori della risoluzione dei problemi, tra cui la risoluzione dei problemi delle migliori pratiche e alcuni degli strumenti e utility che ti consente di assistere nel processo di risoluzione dei problemi.

    VLANs Antivirus Fault Tolerance And Disaster Recovery VLAN antivirus fault tolerance e Disaster Recovery
    Fault tolerance and disaster recovery are such an important part of network administration. Fault tolerance e di disaster recovery sono tali una parte importante di amministrazione di rete. In that light, this tutorial is important both in terms of real-world application. In tale prospettiva, questo tutorial è importante sia in termini di mondo reale applicazione.

    WAN Technologies Internet Access And Security Protocols WAN tecnologie di accesso a Internet e protocolli di sicurezza
    This tutorial examines various WAN technologies and the protocols used to secure and establish the connections. Questo tutorial esamina vari WAN tecnologie e protocolli utilizzati per garantire e creare le connessioni.

    Popularity: 17% [ Popularity: 17% [ ? ? ] ]

    Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages. Condividere e beneficiano: Queste icone link a Social Bookmarking siti in cui i lettori possono condividere e scoprire nuove pagine web.
    • blogmarks
    • del.icio.us
    • Furl
    • Reddit
    • Shadows
    • YahooMyWeb
    • StumbleUpon
    • Digg
    Related Posts: Posti connessi:
  • 5,000 pages of Software and Computer Tutorials 5.000 pagine di Computer Software e Tutorial
  • Computer Networking Tutorials Reti Tutorial
  • 30 Computer and Networking eBooks 30 computer e della rete eBook
  • Technical Computer, Programming and IT Tutorials Tecnica del computer, di programmazione e tutorial
  • Free Computer eBooks, Guides and References from OnlineFreeeBooks.net EBook libera del computer, Guide e Citazioni da OnlineFreeeBooks.net

  • Filed under: Archiviato in: Best New Free Computer IT Training Tutorial Resources Miglior nuovo computer è libero di formazione tutorial risorse — computer_teacher @ 5:42 pm -- Computer_teacher @ 5:42 pm