Cargando…

C♯ 4.0 : the complete reference /

The Definitive Guide to C# "From using LINQ to covariance and from string formatting to optional arguments, Herb's update covers all you need to know about using real-world C# 4.0." -Michael Howard, Microsoft Corporation Bestselling author Herb Schildt has updated and expanded his cla...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Schildt, Herbert
Formato: Electrónico eBook
Idioma:Inglés
Publicado: New York : McGraw-Hill, 2010.
Colección:IT Pro.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ia 4500
001 OR_ocn650347751
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 100727s2010 nyua ob 001 0 eng d
040 |a N$T  |b eng  |e pn  |c N$T  |d IDEBK  |d UMI  |d CEF  |d YDXCP  |d OCLCQ  |d MUQ  |d E7B  |d CDX  |d B24X7  |d DEBSZ  |d OCLCQ  |d OCLCF  |d OCLCQ  |d OCLCO  |d TEFOD  |d CAUOI  |d FMG  |d CNSPO  |d TEFOD  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCLCO  |d XPJ  |d EBLCP  |d MYSZA  |d GRR  |d PIFAG  |d OCLCQ  |d WY@  |d LUE  |d OCLCQ  |d UKAHL  |d AJS  |d OCLCO  |d DST  |d OCLCQ  |d PSYSI  |d OCLCQ  |d OCLCO 
019 |a 649914453  |a 679603908  |a 685056730  |a 698365072  |a 748357181  |a 765143628  |a 816564333  |a 856988926  |a 949859666 
020 |a 9780071741170  |q (electronic bk.) 
020 |a 0071741178  |q (electronic bk.) 
020 |a 1282644769 
020 |a 9781282644762 
020 |z 9780071741163  |q (pbk. ;  |q alk. paper) 
020 |z 007174116X  |q (pbk. ;  |q alk. paper) 
029 1 |a AU@  |b 000053260322 
029 1 |a DEBSZ  |b 355394278 
029 1 |a NZ1  |b 13822840 
029 1 |a AU@  |b 000067110805 
029 1 |a AU@  |b 000054962661 
035 |a (OCoLC)650347751  |z (OCoLC)649914453  |z (OCoLC)679603908  |z (OCoLC)685056730  |z (OCoLC)698365072  |z (OCoLC)748357181  |z (OCoLC)765143628  |z (OCoLC)816564333  |z (OCoLC)856988926  |z (OCoLC)949859666 
037 |a CL0500000077  |b Safari Books Online 
037 |a ABAF3646-84B3-4CBB-9718-0FA92A35D7F4  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.73.C154  |b S337 2010eb 
072 7 |a COM  |x 051310  |2 bisacsh 
072 7 |a COM  |x 051280  |2 bisacsh 
072 7 |a COM  |x 051130  |2 bisacsh 
072 7 |a UM  |2 bicssc 
082 0 4 |a 005.13/3  |2 22 
049 |a UAMI 
100 1 |a Schildt, Herbert. 
245 1 0 |a C♯ 4.0 :  |b the complete reference /  |c Herbert Schildt. 
260 |a New York :  |b McGraw-Hill,  |c 2010. 
300 |a 1 online resource (xxv, 949 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
504 |a Includes bibliographical references and index. 
588 0 |a Print version record. 
505 0 |a Special Thanks; Preface; Part I: The C# Language; 1 The Creation of C#; C#'s Family Tree; How C# Relates to the .NET Framework; How the Common Language Runtime Works; Managed vs. Unmanaged Code; 2 An Overview of C#; Object-Oriented Programming; A First Simple Program; Handling Syntax Errors; A Small Variation; A Second Simple Program; Another Data Type; Two Control Statements; Using Code Blocks; Semicolons, Positioning, and Indentation; The C# Keywords; Identifiers; The .NET Framework Class Library; 3 Data Types, Literals, and Variables; Why Data Types Are Important. 
505 8 |a C#'s Value TypesIntegers; Floating-Point Types; The decimal Type; Characters; The bool Type; Some Output Options; Literals; A Closer Look at Variables; The Scope and Lifetime of Variables; Type Conversion and Casting; Type Conversion in Expressions; 4 Operators; Arithmetic Operators; Relational and Logical Operators; The Assignment Operator; The Bitwise Operators; The? Operator; Spacing and Parentheses; Operator Precedence; 5 Program Control Statements; The if Statement; The switch Statement; The for Loop; The while Loop; The do-while Loop; The foreach Loop; Using break to Exit a Loop. 
505 8 |a Using continueThe goto; 6 Introducing Classes and Objects; Class Fundamentals; How Objects Are Created; Reference Variables and Assignment; Methods; Constructors; The new Operator Revisited; Garbage Collection and Destructors; The this Keyword; 7 Arrays and Strings; Arrays; Multidimensional Arrays; Jagged Arrays; Assigning Array References; Using the Length Property; Implicitly Typed Arrays; The foreach Loop; Strings; 8 A Closer Look at Methods and Classes; Controlling Access to Class Members; Pass References to Methods; Use ref and out Parameters; Use a Variable Number of Arguments. 
505 8 |a Return ObjectsMethod Overloading; Overload Constructors; Object Initializers; Optional Arguments; Named Arguments; The Main() Method; Recursion; Understanding static; Static Classes; 9 Operator Overloading; Operator Overloading Fundamentals; Handling Operations on C# Built-in Types; Overloading the Relational Operators; Overloading true and false; Overloading the Logical Operators; Conversion Operators; Operator Overloading Tips and Restrictions; Another Example of Operator Overloading; 10 Indexers and Properties; Indexers; Properties; Use Access Modifiers with Accessors. 
505 8 |a Using Indexers and Properties11 Inheritance; Inheritance Basics; Member Access and Inheritance; Constructors and Inheritance; Inheritance and Name Hiding; Creating a Multilevel Hierarchy; When Are Constructors Called?; Base Class References and Derived Objects; Virtual Methods and Overriding; Using Abstract Classes; Using sealed to Prevent Inheritance; The object Class; 12 Interfaces, Structures, and Enumerations; Interfaces; Using Interface References; Interface Properties; Interface Indexers; Interfaces Can Be Inherited; Name Hiding with Interface Inheritance; Explicit Implementations. 
520 |a The Definitive Guide to C# "From using LINQ to covariance and from string formatting to optional arguments, Herb's update covers all you need to know about using real-world C# 4.0." -Michael Howard, Microsoft Corporation Bestselling author Herb Schildt has updated and expanded his classic programming reference to cover C# 4.0--the latest release of this powerful, feature-rich language. Using carefully crafted explanations, insider tips, and hundreds of examples, C# 4.0: The Complete Reference offers in-depth details on all aspects of C#, including keywords, syntax, and core libraries. New C# 4.0 features, such as named and optional arguments, the dynamic type, expanded covariance and contravariance capabilities, and support for parallel programming with the Task Parallel Library (TPL) and PLINQ are also discussed. Perfect for beginners and professional C# programmers alike, this expert resource is written in the clear, crisp, uncompromising style that has made Herb the choice of millions worldwide. Begin mastering C# 4.0 today with help from this authoritative volume! Coverage includes: Data types and operators Control statements Classes and objects Constructors, destructors, and methods Interfaces, arrays, enumerations, and structures Method and operator overloading Inheritance and virtual methods Reflection and runtime type ID Exception handling Delegates, properties, events, and indexers Attributes Multithreading and the Task Parallel Library Generics LINQ and PLINQ Lambda expressions Anonymous types Extension methods Named and optional arguments Implicitly typed variables I/O, networking, and collections The preprocessor and much, much more. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a C# (Computer program language) 
650 6 |a C♯ (Langage de programmation) 
650 6 |a C# (Langage de programmation) 
650 7 |a COMPUTERS  |x Programming Languages  |x C♯  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x Java.  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x Pascal.  |2 bisacsh 
650 7 |a C♯ (Computer program language)  |2 blmlsh 
650 7 |a C# (Computer program language)  |2 fast 
776 0 8 |i Print version:  |a Schildt, Herbert.  |t C♯ 4.0.  |d New York : McGraw-Hill, 2010  |z 9780071741163  |w (DLC) 2010014885  |w (OCoLC)559780729 
830 0 |a IT Pro. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9780071741163/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26368051 
938 |a Books 24x7  |b B247  |n bks00035953 
938 |a Coutts Information Services  |b COUT  |n 13929465  |c 49.99 USD 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL4668298 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL4657999 
938 |a ebrary  |b EBRY  |n ebr10395846 
938 |a EBSCOhost  |b EBSC  |n 324071 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n 264476 
938 |a YBP Library Services  |b YANK  |n 3335779 
994 |a 92  |b IZTAP