Notice bibliographique
- Notice
Type(s) de contenu et mode(s) de consultation : Texte noté : électronique
Auteur(s) : Gross, Christian
Titre(s) : How to code .NET [Texte électronique] : tips and tricks for coding .NET 1.1 and .NET 2.0 applications effectively / Christian Gross
Publication : Berkeley, CA : Apress ; New York, NY : Distributed by Springer-Verlag New York, cop.
2006
Description matérielle : 1 online resource (xiii, 216 pages)
Collection : Expert's voice in. NET
Note(s) : What is good code? Writing good code is really a question about what the code is trying
to solve. (And good code is not to be confused with patterns because not all pieces
of good code are patterns.) We debate about good code because there is not just a
single piece of good code, but so many good pieces of code. And each good piece of
code depends on the context in which it is used. How to Code .NET: Tips and Tricks
for Coding .NET 1.1 and .NET 2.0 Applications Effectively provides solutions to certain
problems. That is, specific problems. This book provides detailed, authoritative explanations
of good .NET coding techniques. It's based on award-winning material that author Christian
Gross has previously presented at conferences throughout the U.S. and Europe. What's
more, the author is at the forefront of the .NET technology wave and an acknowledged
expert on the subject of .NET coding style and techniques
Sujet(s) : Informatique
Livres numériques
Indice(s) Dewey :
005.276 8 (23e éd.) = Développement de logiciels pour le traitement réparti - Pour les systèmes d'exploitation
particuliers
Identifiants, prix et caractéristiques : ISBN 9781430202424
Identifiant de la notice : ark:/12148/cb446594905
Notice n° :
FRBNF44659490
(notice reprise d'un réservoir extérieur)
Table des matières : What This Book Is About ; NET Runtime and Framework Related Solutions ; Value Types
and Reference Types Can Be Confused ; What are Delegates?- What Does the Yield Keyword
Really Generate?- Versioning Assemblies ; Loading Assemblies Without Any Hassles
Using A Utility Class ; Dynamically Loading and Unloading Assemblies ; Implementing
GetHashCode Properly ; Think of .NET Generics as Black Boxes ; Figuring Out What
Generic Methods Do ; Why For .NET Generics Do You Need the New and Class Keyword?-
Text Related Solutions ; Converting a String to an Array and Vice Versa ; Parsing
Numbers from Buffers ; When To Use StringBuilder ; Finding a Piece of Text within
a Text Buffer ; Always Implement ToString ; Using a Disposable Type to Iterating
the Results of Finding Multiple Pieces of Text within a Text Buffer ; Making ToString
Generate Structured Output ; C♯ and Code Related Solutions ; Inheritance can be
Used Effectively (instead of Interfaces only) ; (Almost) Everyt