El Libro del Día: 2016-10-06
Titulo: Effective C# (2nd Edition)
Autor: Bill Wagner
Editorial: Addison-Wesley
Nro Paginas: 343
Capítulos:
Chapter 1 C# Language Idioms
- Item 1: Use Properties Instead of Accessible Data Members
- Item 2: Prefer readonly to const
- Item 3: Prefer the is or as Operators to Casts
- Item 4: Use Conditional Attributes Instead of #if
- Item 5: Always Provide ToString()
- Item 6: Understand the Relationships Among the Many Different Concepts of Equality
- Item 7: Understand the Pitfalls of GetHashCode()
- Item 8: Prefer Query Syntax to Loops
- Item 9: Avoid Conversion Operators in Your APIs
- Item 10: Use Optional Parameters to Minimize Method Overloads
- Item 11: Understand the Attraction of Small Functions
Chapter 2 .NET Resource Management
- Item 12: Prefer Member Initializers to Assignment Statements
- Item 13: Use Proper Initialization for Static Class Members
- Item 14: Minimize Duplicate Initialization Logic
- Item 15: Utilize using and try/finally for Resource Cleanup
- Item 16: Avoid Creating Unnecessary Objects
- Item 17: Implement the Standard Dispose Pattern
- Item 18: Distinguish Between Value Types and Reference Types
- Item 19: Ensure That 0 Is a Valid State for Value Types
- Item 20: Prefer Immutable Atomic Value Types
Chapter 3 Expressing Designs in C#
- Item 21: Limit Visibility of Your Types
- Item 22: Prefer Defining and Implementing Interfaces to Inheritance
- Item 23: Understand How Interface Methods Differ from Virtual Methods
- Item 24: Express Callbacks with Delegates
- Item 25: Implement the Event Pattern for Notifications
- Item 26: Avoid Returning References to Internal Class Objects
- Item 27: Prefer Making Your Types Serializable
- Item 28: Create Large-Grain Internet Service APIs
- Item 29: Support Generic Covariance and Contravariance
Chapter 4 Working with the Framework
- Item 30: Prefer Overrides to Event Handlers
- Item 31: Implement Ordering Relations with IComparable<T> and IComparer<T>
- Item 32: Avoid ICloneable
- Item 33: Use the new Modifier Only to React to Base Class Updates
- Item 34: Avoid Overloading Methods Defined in Base Classes
- Item 35: Learn How PLINQ Implements Parallel Algorithms
- Item 36: Understand How to Use PLINQ for I/O Bound Operations
- Item 37: Construct Parallel Algorithms with Exceptions in Mind
Chapter 5 Dynamic Programming in C#
- Item 38: Understand the Pros and Cons of Dynamic
- Item 39: Use Dynamic to Leverage the Runtime Type of Generic Type Parameters
- Item 40: Use Dynamic for Parameters That Receive Anonymous Types
- Item 41: Use DynamicObject or IDynamicMetaObjectProvider for Data Driven Dynamic Types
- Item 42: Understand How to Make Use of the Expression API
- Item 43: Use Expressions to Transform Late Binding into Early Binding
- Item 44: Minimize Dynamic Objects in Public APIs
Chapter 6 Miscellaneous
- Item 45: Minimize Boxing and Unboxing
- Item 46: Create Complete Application-Specific Exception Classes
- Item 47: Prefer the Strong Exception Guarantee
- Item 48: Prefer Safe Code
- Item 49: Prefer CLS-Compliant Assemblies
- Item 50: Prefer Smaller, Cohesive Assemblies
Descarga:
Effective_C#_2nd_Edition
Blog de Luis Dueñas dedicado a la difusión del Desarrollo en Microsoft .NET, Visual Studio, WinForms, WebForms, MVC, ASP .NET, jQuery, AJAX, HTML5, JavaScript, Móviles, etc. Encontrarás Libros, Demos, Artículos Técnicos, Entrenamiento.
Mostrando las entradas con la etiqueta Delegates. Mostrar todas las entradas
Mostrando las entradas con la etiqueta Delegates. Mostrar todas las entradas
jueves, 6 de octubre de 2016
El Libro del Día: Effective C# (2nd Edition)
Etiquetas:
.NET,
Addison-Wesley,
APIs,
Bill Wagner,
Boxing,
CallBacks,
Delegates,
Dynamic,
Effective C#,
Equality,
GetHashCode,
Interfaces,
Libros,
Operators,
Ordering,
PLINQ,
Properties,
Resources,
Serializable,
Types
jueves, 28 de julio de 2016
El Libro del Día: Essential C# 6.0
El Libro del Día: 2016-07-28
Titulo: Essential C# 6.0 (5th Edition)
Autor: Mark Michaelis, Eric Lippert
Editorial: Addison Wesley
Nro Paginas: 1046
Capítulos:
1 Introducing C#
2 Data Types
3 Operators and Control Flow
4 Methods and Parameters
5 Classes
6 Inheritance
7 Interfaces
8 Value Types
9 Well-Formed Types
10 Exception Handling
11 Generics
12 Delegates and Lambda Expressions
13 Events
14 Collection Interfaces with Standard Query Operators
15 LINQ with Query Expressions
16 Building Custom Collections
17 Reflection, Attributes, and Dynamic Programming
18 Multithreading
19 Thread Synchronization
20 Platform Interoperability and Unsafe Code
21 The Common Language Infrastructure
A Downloading and Installing the C# Compiler and CLI Platform
B Tic-Tac-Toe Source Code Listing
C Interfacing with Multithreading Patterns prior to the TPL and C# 6.0
D Timers Prior to the Async/Await Pattern of C# 5.0
Descarga:
Essential_C#_6.0
Titulo: Essential C# 6.0 (5th Edition)
Autor: Mark Michaelis, Eric Lippert
Editorial: Addison Wesley
Nro Paginas: 1046
Capítulos:
1 Introducing C#
2 Data Types
3 Operators and Control Flow
4 Methods and Parameters
5 Classes
6 Inheritance
7 Interfaces
8 Value Types
9 Well-Formed Types
10 Exception Handling
11 Generics
12 Delegates and Lambda Expressions
13 Events
14 Collection Interfaces with Standard Query Operators
15 LINQ with Query Expressions
16 Building Custom Collections
17 Reflection, Attributes, and Dynamic Programming
18 Multithreading
19 Thread Synchronization
20 Platform Interoperability and Unsafe Code
21 The Common Language Infrastructure
A Downloading and Installing the C# Compiler and CLI Platform
B Tic-Tac-Toe Source Code Listing
C Interfacing with Multithreading Patterns prior to the TPL and C# 6.0
D Timers Prior to the Async/Await Pattern of C# 5.0
Descarga:
Essential_C#_6.0
Etiquetas:
Addison,
C# 6.0,
Classes,
Data Types,
Delegates,
Eric Lippert,
Essential,
Events,
Exceptions,
Generics,
Inheritance,
Interfaces,
Libros,
LINQ,
Mark Michaelis,
Methods,
Operators,
Reflection,
Synchronization,
Threads
miércoles, 27 de julio de 2016
El Libro del Día: Professional C# 6 and .NET Core 1.0
El Libro del Día: 2016-07-27
Titulo: Professional C# 6 and .NET Core 1.0
Autor: Christian Nagel
Editorial: Wrox
Nro Paginas: 1532
Capítulos:
Part I: The C# Language
Chapter 1 .NET Application Architectures
Chapter 2 Core C#
Chapter 3 Objects and Types
Chapter 4 Inheritance
Chapter 5 Managed and Unmanaged Resources
Chapter 6 Generics
Chapter 7 Arrays and Tuples
Chapter 8 Operators and Casts
Chapter 9 Delegates, Lambdas, and Events
Chapter 10 Strings and Regular Expressions
Chapter 11 Collections
Chapter 12 Special Collections
Chapter 13 Language Integrated Query
Chapter 14 Errors and Exceptions
Chapter 15 Asynchronous Programming
Chapter 16 Reflection, Metadata, and Dynamic Programming
Part II: .NET Core and Windows Runtime
Chapter 17 Visual Studio 2015
Chapter 18 .NET Compiler Platform
Chapter 19 Testing
Chapter 20 Diagnostics and Application Insights
Chapter 21 Tasks and Parallel Programming
Chapter 22 Task Synchronization
Chapter 23 Files and Streams
Chapter 24 Security
Chapter 25 Networking
Chapter 26 Composition
Chapter 27 XML and JSON
Chapter 28 Localization
Part III: WINDOWS APPS
Chapter 29 Core XAML
Chapter 30 Styling XAML Apps
Chapter 31 Patterns with XAML Apps
Chapter 32 Windows Apps: User Interfaces
Chapter 33 Advanced Windows Apps
Chapter 34 Windows Desktop Applications with WPF
Chapter 35 Creating Documents with WPF
Chapter 36 Deploying Windows Apps
Part IV: Web App lications and Services
Chapter 37 ADO.NET
Chapter 38 Entity Framework Core
Chapter 39 Windows Services
Chapter 40 ASP.NET Core
Chapter 41 ASP.NET MVC
Chapter 42 ASP.NET Web API
Chapter 43 WebHooks and SignalR
Chapter 44 Windows Communication Foundation
Chapter 45 Deploying Websites and Services
Descarga:
Professional_C#_6_and_.NET_Core_1.0
Titulo: Professional C# 6 and .NET Core 1.0
Autor: Christian Nagel
Editorial: Wrox
Nro Paginas: 1532
Capítulos:
Part I: The C# Language
Chapter 1 .NET Application Architectures
Chapter 2 Core C#
Chapter 3 Objects and Types
Chapter 4 Inheritance
Chapter 5 Managed and Unmanaged Resources
Chapter 6 Generics
Chapter 7 Arrays and Tuples
Chapter 8 Operators and Casts
Chapter 9 Delegates, Lambdas, and Events
Chapter 10 Strings and Regular Expressions
Chapter 11 Collections
Chapter 12 Special Collections
Chapter 13 Language Integrated Query
Chapter 14 Errors and Exceptions
Chapter 15 Asynchronous Programming
Chapter 16 Reflection, Metadata, and Dynamic Programming
Part II: .NET Core and Windows Runtime
Chapter 17 Visual Studio 2015
Chapter 18 .NET Compiler Platform
Chapter 19 Testing
Chapter 20 Diagnostics and Application Insights
Chapter 21 Tasks and Parallel Programming
Chapter 22 Task Synchronization
Chapter 23 Files and Streams
Chapter 24 Security
Chapter 25 Networking
Chapter 26 Composition
Chapter 27 XML and JSON
Chapter 28 Localization
Part III: WINDOWS APPS
Chapter 29 Core XAML
Chapter 30 Styling XAML Apps
Chapter 31 Patterns with XAML Apps
Chapter 32 Windows Apps: User Interfaces
Chapter 33 Advanced Windows Apps
Chapter 34 Windows Desktop Applications with WPF
Chapter 35 Creating Documents with WPF
Chapter 36 Deploying Windows Apps
Part IV: Web App lications and Services
Chapter 37 ADO.NET
Chapter 38 Entity Framework Core
Chapter 39 Windows Services
Chapter 40 ASP.NET Core
Chapter 41 ASP.NET MVC
Chapter 42 ASP.NET Web API
Chapter 43 WebHooks and SignalR
Chapter 44 Windows Communication Foundation
Chapter 45 Deploying Websites and Services
Descarga:
Professional_C#_6_and_.NET_Core_1.0
Etiquetas:
.NET Core 1.0,
Arrays,
ASP.NET,
Asynchronous,
C# 6,
Christian Nagel,
Collections,
Delegates,
Generics,
Libros,
LINQ,
Objects,
Operators,
Professional,
Reflection,
Strings,
Tasks,
WPF,
Wrox,
XAML Apps
martes, 26 de julio de 2016
El Libro del Día: More Effective C#
El Libro del Día: 2016-07-26
Titulo: More Effective C#
Autor: Bill Wagner
Editorial: Addison-Wesley
Nro Paginas: 309
Capítulos:
Chapter 1. Working with Generics
Chapter 2. Multithreading in C#
Chapter 3. C# Design Practices
Chapter 4. C# 3.0 Language Enhancements
Chapter 5. Working with LINQ
Chapter 6. Miscellaneous
Descarga:
More_Effective_C#
Titulo: More Effective C#
Autor: Bill Wagner
Editorial: Addison-Wesley
Nro Paginas: 309
Capítulos:
Chapter 1. Working with Generics
Chapter 2. Multithreading in C#
Chapter 3. C# Design Practices
Chapter 4. C# 3.0 Language Enhancements
Chapter 5. Working with LINQ
Chapter 6. Miscellaneous
Descarga:
More_Effective_C#
Etiquetas:
.NET,
Actions,
Addison,
Anonymous,
Arrays,
Bill Wagner,
C#,
Cross-Thread,
Delegates,
Design Practices,
Extensions,
Functions,
Generics,
Libros,
LINQ,
More Effective,
Multithreading,
Parameters,
Predicates,
Thread Pool
miércoles, 27 de agosto de 2014
El Libro del Día: Expert C# 5.0
El Libro del Día: 2014-08-27
Titulo: Expert C# 5.0
Autor: Mohammad Rahman
Editorial: Apress
Nro Paginas: 609
Capítulos:
Chapter 1: Reintroducing C#:-A Detailed Look at the Language We All Know
Chapter 2: C# Objects in Memory
Chapter 3: Parameters
Chapter 4: Methods
Chapter 5: Automatic Property Declaration
Chapter 6: Enum
Chapter 7: Delegate
Chapter 8: Event
Chapter 9: Foreach and Iterator
Chapter 10: The String Data Type
Chapter 11: Collections Explained
Chapter 12: Linq in C#
Chapter 13: Exception Management
Chapter 14: Asynchrony
Chapter 15: Diagnostic Tools in .NET
Descarga:
Expert_C#_5.0
Titulo: Expert C# 5.0
Autor: Mohammad Rahman
Editorial: Apress
Nro Paginas: 609
Capítulos:
Chapter 1: Reintroducing C#:-A Detailed Look at the Language We All Know
Chapter 2: C# Objects in Memory
Chapter 3: Parameters
Chapter 4: Methods
Chapter 5: Automatic Property Declaration
Chapter 6: Enum
Chapter 7: Delegate
Chapter 8: Event
Chapter 9: Foreach and Iterator
Chapter 10: The String Data Type
Chapter 11: Collections Explained
Chapter 12: Linq in C#
Chapter 13: Exception Management
Chapter 14: Asynchrony
Chapter 15: Diagnostic Tools in .NET
Descarga:
Expert_C#_5.0
Etiquetas:
Apress,
Asynchronous,
C#,
Collections,
Delegates,
Diagnostic Tools,
Enums,
Events,
Exceptions,
Foreach,
Iterators,
Language,
Libros,
LINQ,
Methods,
Mohammad Rahman,
Objects,
Parameters,
Properties,
String
lunes, 25 de agosto de 2014
El Libro del Día: A Programmer's Guide to C# 5.0
El Libro del Día: 2014-08-25
Titulo: A Programmer's Guide to C# 5.0 (4th Edition)
Autor: Eric Gunnerson, Nick Wienholt
Editorial: Apress
Nro Paginas: 443
Capítulos:
Chapter 1: C# and the .NET Runtime and Libraries
Chapter 2: C# QuickStart and Developing in C#
Chapter 3: Classes 101
Chapter 4: Base Classes and Inheritance
Chapter 5: Exception Handling
Chapter 6: Member Accessibility and Overloading
Chapter 7: Other Class Details
Chapter 8: Structs (Value Types)
Chapter 9: Interfaces
Chapter 10: Versioning and Aliases
Chapter 11: Statements and Flow of Execution
Chapter 12: Variable Scoping and Definite Assignment
Chapter 13: Operators and Expressions
Chapter 14: Conversions
Chapter 15: Arrays
Chapter 16: Properties
Chapter 17: Generic Types
Chapter 18: Indexers, Enumerators, and Iterators
Chapter 19: Strings
Chapter 20: Enumerations
Chapter 21: Attributes
Chapter 22: Delegates, Anonymous Methods, and Lambdas
Chapter 23: Events
Chapter 24: Dynamic Typing
Chapter 25: User-Defined Conversions
Chapter 26: Operator Overloading
Chapter 27: Nullable Types
Chapter 28: Linq to Objects
Chapter 29: Linq to XML
Chapter 30: Linq to SQL
Chapter 31: Other Language Details
Chapter 32: Making Friends with the .NET Framework
Chapter 33: System.Array and the Collection Classes
Chapter 34: Threading
Chapter 35: Asynchronous and Parallel Programming
Chapter 36: Execution-Time Code Generation
Chapter 37: Interop
Chapter 38: .NET Base Class Library Overview
Chapter 39: Deeper into C#
Chapter 40: Logging and Debugging Techniques
Chapter 41: IDEs and Utilities
Descarga:
A_Programmers_Guide_C#_5.0
Titulo: A Programmer's Guide to C# 5.0 (4th Edition)
Autor: Eric Gunnerson, Nick Wienholt
Editorial: Apress
Nro Paginas: 443
Capítulos:
Chapter 1: C# and the .NET Runtime and Libraries
Chapter 2: C# QuickStart and Developing in C#
Chapter 3: Classes 101
Chapter 4: Base Classes and Inheritance
Chapter 5: Exception Handling
Chapter 6: Member Accessibility and Overloading
Chapter 7: Other Class Details
Chapter 8: Structs (Value Types)
Chapter 9: Interfaces
Chapter 10: Versioning and Aliases
Chapter 11: Statements and Flow of Execution
Chapter 12: Variable Scoping and Definite Assignment
Chapter 13: Operators and Expressions
Chapter 14: Conversions
Chapter 15: Arrays
Chapter 16: Properties
Chapter 17: Generic Types
Chapter 18: Indexers, Enumerators, and Iterators
Chapter 19: Strings
Chapter 20: Enumerations
Chapter 21: Attributes
Chapter 22: Delegates, Anonymous Methods, and Lambdas
Chapter 23: Events
Chapter 24: Dynamic Typing
Chapter 25: User-Defined Conversions
Chapter 26: Operator Overloading
Chapter 27: Nullable Types
Chapter 28: Linq to Objects
Chapter 29: Linq to XML
Chapter 30: Linq to SQL
Chapter 31: Other Language Details
Chapter 32: Making Friends with the .NET Framework
Chapter 33: System.Array and the Collection Classes
Chapter 34: Threading
Chapter 35: Asynchronous and Parallel Programming
Chapter 36: Execution-Time Code Generation
Chapter 37: Interop
Chapter 38: .NET Base Class Library Overview
Chapter 39: Deeper into C#
Chapter 40: Logging and Debugging Techniques
Chapter 41: IDEs and Utilities
Descarga:
A_Programmers_Guide_C#_5.0
Etiquetas:
Apress,
Arrays,
Attributes,
C#,
Classes,
Conversions,
Delegates,
Enumerations,
Eric Gunnerson,
Expressions,
Inheritance,
Interfaces,
Libros,
LINQ,
Nick Wienholt,
Operators,
Overloading,
Properties,
Structs,
Versioning
miércoles, 6 de agosto de 2014
El Libro del Día: Pro C# 5.0 and the .NET 4.5 Framework
El Libro del Día: 2014-08-06
Titulo: Pro C# 5.0 and the .NET 4.5 Framework (6th Edition)
Autor: Andrew Troelsen
Editorial: Apress
Nro Paginas: 1534
Capítulos:
Part I: Introducing C# and .NET Platform
Chapter 1: The Philosophy of .NET
Chapter 2: Building C# Applications
Part II: Core C# Programming
Chapter 3: Core C# Programming Constructs, Part I
Chapter 4: Core C# Programming Constructs, Part II
Part III: Object-Oriented Programming with C#
Chapter 5: Understanding Encapsulation
Chapter 6: Understanding Inheritance and Polymorphism
Chapter 7: Understanding Structured Exception Handling
Chapter 8: Working with Interfaces
Part IV: Advanced C# Programming
Chapter 9: Collections and Generics
Chapter 10: Delegates, Events, and Lambda Expressions
Chapter 11: Advanced C# Language Features
Chapter 12: LINQ to Objects
Chapter 13: Understanding Object Lifetime
Part V: Programming with .NET Assemblies
Chapter 14: Building and Configuring Class Libraries
Chapter 15: Type Reflection, Late Binding, and Attribute-Based Programming
Chapter 16: Dynamic Types and the Dynamic Language Runtime
Chapter 17: Processes, AppDomains, and Object Contexts
Chapter 18: Understanding CIL and the Role of Dynamic Assemblies
Part VI: Introducing the .NET Base Class Libraries
Chapter 19: Multithreaded, Parallel, and Async Programming
Chapter 20: File I/O and Object Serialization
Chapter 21: ADO.NET Part I: The Connected Layer
Chapter 22: ADO.NET Part II: The Disconnected Layer
Chapter 23: ADO.NET Part III: The Entity Framework
Chapter 24: Introducing LINQ to XML
Chapter 25: Introducing Windows Communication Foundation
Chapter 26: Introducing Windows Workflow Foundation
Part VII: Windows Presentation Foundation
Chapter 27: Introducing Windows Presentation Foundation and XAML
Chapter 28: Programming with WPF Controls
Chapter 29: WPF Graphics Rendering Services
Chapter 30: WPF Resources, Animations, and Styles
Chapter 31: Dependency Properties, Routed Events, and Templates
Part VIII: ASP.NET Web Forms
Chapter 32: Introducing ASP.NET Web Forms
Chapter 33: ASP.NET Web Controls, Master Pages, and Themes
Chapter 34: ASP.NET State Management Techniques
Descarga:
Pro_C#5.0_.NET4.5_Framework
Titulo: Pro C# 5.0 and the .NET 4.5 Framework (6th Edition)
Autor: Andrew Troelsen
Editorial: Apress
Nro Paginas: 1534
Capítulos:
Part I: Introducing C# and .NET Platform
Chapter 1: The Philosophy of .NET
Chapter 2: Building C# Applications
Part II: Core C# Programming
Chapter 3: Core C# Programming Constructs, Part I
Chapter 4: Core C# Programming Constructs, Part II
Part III: Object-Oriented Programming with C#
Chapter 5: Understanding Encapsulation
Chapter 6: Understanding Inheritance and Polymorphism
Chapter 7: Understanding Structured Exception Handling
Chapter 8: Working with Interfaces
Part IV: Advanced C# Programming
Chapter 9: Collections and Generics
Chapter 10: Delegates, Events, and Lambda Expressions
Chapter 11: Advanced C# Language Features
Chapter 12: LINQ to Objects
Chapter 13: Understanding Object Lifetime
Part V: Programming with .NET Assemblies
Chapter 14: Building and Configuring Class Libraries
Chapter 15: Type Reflection, Late Binding, and Attribute-Based Programming
Chapter 16: Dynamic Types and the Dynamic Language Runtime
Chapter 17: Processes, AppDomains, and Object Contexts
Chapter 18: Understanding CIL and the Role of Dynamic Assemblies
Part VI: Introducing the .NET Base Class Libraries
Chapter 19: Multithreaded, Parallel, and Async Programming
Chapter 20: File I/O and Object Serialization
Chapter 21: ADO.NET Part I: The Connected Layer
Chapter 22: ADO.NET Part II: The Disconnected Layer
Chapter 23: ADO.NET Part III: The Entity Framework
Chapter 24: Introducing LINQ to XML
Chapter 25: Introducing Windows Communication Foundation
Chapter 26: Introducing Windows Workflow Foundation
Part VII: Windows Presentation Foundation
Chapter 27: Introducing Windows Presentation Foundation and XAML
Chapter 28: Programming with WPF Controls
Chapter 29: WPF Graphics Rendering Services
Chapter 30: WPF Resources, Animations, and Styles
Chapter 31: Dependency Properties, Routed Events, and Templates
Part VIII: ASP.NET Web Forms
Chapter 32: Introducing ASP.NET Web Forms
Chapter 33: ASP.NET Web Controls, Master Pages, and Themes
Chapter 34: ASP.NET State Management Techniques
Descarga:
Pro_C#5.0_.NET4.5_Framework
Etiquetas:
.NET Framework,
ADO .NET,
Andrew Troelsen,
Apress,
ASP .NET,
C#,
Collections,
Delegates,
DLR,
Encapsulation,
Generics,
Inheritance,
Interfaces,
Libros,
LINQ,
OOP,
Polymorphism,
Reflection,
WCF,
WPF
miércoles, 2 de julio de 2014
El Libro del Día: MCSD Certification Toolkit Exam 70483 Programming in C#
El Libro del Día: 2014-07-02
Titulo: MCSD Certification Toolkit Exam 70483 Programming in C#
Autor: Tiberiu Covaci, Gerry O'Brien, Rod Stephen, Vincent Varallo
Editorial: Wrox
Nro Paginas: 650
Capítulos:
Chapter 1: Introducing the Programming C# Certification
Chapter 2: Basic Program Structure
Chapter 3: Working with the Type System
Chapter 4: Using Types
Chapter 5: Creating and Implementing Class Hierarchies
Chapter 6: Working with Delegates, Events, and Exceptions
Chapter 7: Multithreading and Asynchronous Processing
Chapter 8: Creating and Using Types with Reflection, Custom Attributes, the CodeDOM, and Lambda Expressions
Chapter 9: Working with Data
Chapter 10: Working with Language Integrated Query (LINQ)
Chapter 11: Input Validation, Debugging, and Instrumentation
Chapter 12: Using Encryption and Managing Assemblies
APPENDIX: Answers to Sample Test Questions
Descarga:
MCSD_CertificationToolkit_Exam70483_ProgrammingC#
Titulo: MCSD Certification Toolkit Exam 70483 Programming in C#
Autor: Tiberiu Covaci, Gerry O'Brien, Rod Stephen, Vincent Varallo
Editorial: Wrox
Nro Paginas: 650
Capítulos:
Chapter 1: Introducing the Programming C# Certification
Chapter 2: Basic Program Structure
Chapter 3: Working with the Type System
Chapter 4: Using Types
Chapter 5: Creating and Implementing Class Hierarchies
Chapter 6: Working with Delegates, Events, and Exceptions
Chapter 7: Multithreading and Asynchronous Processing
Chapter 8: Creating and Using Types with Reflection, Custom Attributes, the CodeDOM, and Lambda Expressions
Chapter 9: Working with Data
Chapter 10: Working with Language Integrated Query (LINQ)
Chapter 11: Input Validation, Debugging, and Instrumentation
Chapter 12: Using Encryption and Managing Assemblies
APPENDIX: Answers to Sample Test Questions
Descarga:
MCSD_CertificationToolkit_Exam70483_ProgrammingC#
Etiquetas:
Asynchronous,
C#,
Certification,
CodeDOM,
Delegates,
Encryption,
Events,
Exam 70483,
Exceptions,
Gerry O'Brien,
Lambda,
Libros,
LINQ,
MCSD,
Reflection,
Rod Stephen,
Tiberiu Covaci,
Vincent Varallo,
Wrox
Suscribirse a:
Entradas (Atom)







