Nicht aus der Schweiz? Besuchen Sie lehmanns.de
Beginning C# 2008 - Christian Gross

Beginning C# 2008 (eBook)

From Novice to Professional

(Autor)

eBook Download: PDF
2008 | 1st ed.
487 Seiten
Apress (Verlag)
978-1-4302-0417-6 (ISBN)
Systemvoraussetzungen
32,09 inkl. MwSt
(CHF 31,35)
Der eBook-Verkauf erfolgt durch die Lehmanns Media GmbH (Berlin) zum Preis in Euro inkl. MwSt.
  • Download sofort lieferbar
  • Zahlungsarten anzeigen

Beginning C# 3.0 has been written from scratch, specifically for the new 'Orcas' version, by a well-respected author to teach beginners how to use the new framework to their best advantage. They will learn everything they need to know to get to grips with this cutting-edge technology. This is one of the first books to be published dealing with the Orcas technology for the beginning audience. Comprehensive and thorough - the book is tailored to turn an interested amateur into a competent, well-grounded, programmer.



Christian Gross is a consultant with vast experience in the client/server world. He has consulted for Microsoft on DNA solutions, and he has held consulting positions with Daimler Benz, Microsoft, NatWest, and other major corporations. Gross was a contributor to Professional Active Server Pages, Professional SQL Server 6.5 Administration, Professional NT Internet Information Server Administration, and Programming Microsoft Windows 2000 Unleashed. He is the author of A Programmer's Introduction to Windows DNA.
T he first computer programming book I read was entitled Programming Windows 3.0 by Charles Petzold. This was around the time when Microsoft Windows 3.0 (circa 1992) once and for all showed the industry that Microsoft was a company with a future. Writing code for Windows back then was complicated by many things: lack of documentation, 16-bit architecture, and the necessity of buying a compiler separate from the software development kit (SDK). Charles's book tied everything together and solved the problem of how to write a program for Windows. Now the problems are quite the opposite: we have too much documentation, we have 64-bit architectures, and everything including the kitchen sink is thrown into a development environment. Now we need to figure out what we actually need. We have too many options- too many ways to solve the same problem. What I am trying to do with this book is the same thing that Charles did for me when I first started out, and that was to help me figure out what I needed to write code. This book is about explaining the C# programming language in the context of solving problems. C# has become a sophisticated programming language that can achieve many goals, but you are left wondering what techniques to use when. This book is here to answer your questions.

Christian Gross is a consultant with vast experience in the client/server world. He has consulted for Microsoft on DNA solutions, and he has held consulting positions with Daimler Benz, Microsoft, NatWest, and other major corporations. Gross was a contributor to Professional Active Server Pages, Professional SQL Server 6.5 Administration, Professional NT Internet Information Server Administration, and Programming Microsoft Windows 2000 Unleashed. He is the author of A Programmer's Introduction to Windows DNA.

Contents at a Glance 5
Contents 6
About the Author 15
About the Technical Reviewer 16
Introduction 17
Ready, Steady, Go! 18
Downloading and Installing the Tools 18
Choosing the Application Type 21
Creating Projects and Solutions 21
Creating the Windows Application 22
Navigating the User Controls of the Solution 30
Creating the Console Application 33
Creating the Class Library 34
Understanding How the . NET Framework Works 40
The Important Stuff to Remember 42
Some Things for You to Do 43
Learning About .NET Number and Value Types 44
Focusing and Organizing Your Development 44
Implementing the Class Library 49
Understanding Numeric and Value Data Types 61
Finishing the Calculator 66
The Important Stuff to Remember 67
Some Things for You to Do 67
Learning About String Manipulations 69
Organizing the Translation Application 69
Building the Translator Application 70
Dealing with Languages and Cultures 85
The Important Stuff to Remember 90
Some Things for You to Do 91
Learning About Data Structures, Decisions, and Loops 92
Understanding the Depth- First Search Algorithm 92
Implementing User- Defined Types 96
Organizing the Search Algorithm 102
Writing the Depth- First Search Code 104
The Important Stuff to Remember 127
Some Things for You to Do 128
Learning About C# Exception Handling 129
Understanding Errors, Exceptions, and Exception Handling 129
Running the Debugger 130
Handling Exceptions 131
Writing Exception- Safe Code 144
The Important Stuff to Remember 149
Some Things for You to Do 150
Learning the Basics of Object- Oriented Programming 151
Understanding Currency Spreads 152
Organizing the Currency Exchange Application 153
Writing Tests for the Currency Exchange Application 153
Writing the Active Trader and Hotel Trader Currency Converters 168
Learning More About Preprocessor Directives, Properties, and Abstract Methods 172
The Important Stuff to Remember 176
Some Things for You to Do 177
Learning About Components and Object Hierarchies 178
Understanding Some Basic Tax Concepts 178
Organizing the Tax Application 179
Programming Using Ideas 180
Implementing a Tax Engine 189
Using the Base Functionality of the Tax Engine to Calculate Taxes 198
Learning More About Inheritance and Type Casting 203
The Important Stuff to Remember 210
Some Things for You to Do 211
Learning About Component- Oriented Architecture 212
Understanding Kernels 212
Organizing the Lighting Application 213
Building the Kernel 214
Building a Complete Application 237
Learning More About Private Classes and Object Initialization 240
The Important Stuff to Remember 242
Some Things for You to Do 242
Learning About Lists, Delegates, and Lambda Expressions 243
Managing Collections 243
The Case of the Code That Feels Wrong 249
Understanding Lambda Expressions 261
Learning More About Collection Types 264
The Important Stuff to Remember 267
Some Things for You to Do 267
Learning About Persistence 268
Organizing the Lottery- Prediction System 268
Piping Data Using a Console 269
Piping Binary Data 289
Tweaking Serialization 298
Completing Custom Types 300
The Important Stuff to Remember 305
Some Things for You to Do 305
Learning About .NET Generics 306
Why Use . NET Generics? 306
The Theory of a Server- Side Spreadsheet 309
Architecting a Server- Side Spreadsheet 312
Implementing the Server Spreadsheet 322
Using the Spreadsheet 335
The Important Stuff to Remember 338
Some Things for You to Do 339
Learning About Application Configuration and Dynamic Loading 340
Convention over Configuration 340
Setting Up the Dynamic Loading Projects 343
Defining and Processing a Configuration File 347
Dynamically Loading an Assembly 350
Loading a Strongly Named Assembly 359
Implementing a Convention- Based Architecture 365
Dynamically Loading Base Class or Interface Types 367
The Important Stuff to Remember 368
Some Things for You to Do 369
Learning About Multithreading 370
Understanding Multitasking 370
Using Threads 374
Implementing a Reader/ Writer Threaded Architecture 387
Implementing a Producer/ Consumer Architecture 391
The Important Stuff to Remember 397
Some Things for You to Do 398
Learning About Relational Database Data 399
Understanding Relational Databases 399
Accessing Relational Databases 404
Designing a Database Using Visual C# Express 405
Accessing the Database Using ADO. NET 413
Using the Dataset Designer 418
The Important Stuff to Remember 424
Some Things for You to Do 424
Learning About LINQ 425
Finding the Frequency of Winning Numbers 425
Learning More LINQ Tricks 435
Using LINQ in Other Contexts 446
The Important Stuff to Remember 448
Some Things for You to Do 448
Writing Functional Code in C# 449
Why Functional Programming? 449
The Essence of Functional Programming 451
The Important Stuff to Remember 463
Some Things for You to Do 463
Learning About Other C# Techniques 464
Operators 464
The goto Statement 471
. NET Generics Constraints 472
Nullable Types 475
Partial Classes and Methods 477
The Important Stuff to Remember 479
Some Things for You to Do 479
Index 480

Erscheint lt. Verlag 7.2.2008
Zusatzinfo 487 p.
Verlagsort Berkeley
Sprache englisch
Themenwelt Informatik Software Entwicklung Objektorientierung
Mathematik / Informatik Informatik Web / Internet
Schlagworte C# • Databases • data structures • language • .NET • .NET Framework • object-oriented programming (OOP) • programming • Programming language • Simulation • Software • XML
ISBN-10 1-4302-0417-6 / 1430204176
ISBN-13 978-1-4302-0417-6 / 9781430204176
Haben Sie eine Frage zum Produkt?
PDFPDF (Wasserzeichen)
Größe: 6,8 MB

DRM: Digitales Wasserzeichen
Dieses eBook enthält ein digitales Wasser­zeichen und ist damit für Sie persona­lisiert. Bei einer missbräuch­lichen Weiter­gabe des eBooks an Dritte ist eine Rück­ver­folgung an die Quelle möglich.

Dateiformat: PDF (Portable Document Format)
Mit einem festen Seiten­layout eignet sich die PDF besonders für Fach­bücher mit Spalten, Tabellen und Abbild­ungen. Eine PDF kann auf fast allen Geräten ange­zeigt werden, ist aber für kleine Displays (Smart­phone, eReader) nur einge­schränkt geeignet.

Systemvoraussetzungen:
PC/Mac: Mit einem PC oder Mac können Sie dieses eBook lesen. Sie benötigen dafür einen PDF-Viewer - z.B. den Adobe Reader oder Adobe Digital Editions.
eReader: Dieses eBook kann mit (fast) allen eBook-Readern gelesen werden. Mit dem amazon-Kindle ist es aber nicht kompatibel.
Smartphone/Tablet: Egal ob Apple oder Android, dieses eBook können Sie lesen. Sie benötigen dafür einen PDF-Viewer - z.B. die kostenlose Adobe Digital Editions-App.

Zusätzliches Feature: Online Lesen
Dieses eBook können Sie zusätzlich zum Download auch online im Webbrowser lesen.

Buying eBooks from abroad
For tax law reasons we can sell eBooks just within Germany and Switzerland. Regrettably we cannot fulfill eBook-orders from other countries.

Mehr entdecken
aus dem Bereich
Entwicklung von GUIs für verschiedene Betriebssysteme

von Achim Lingott

eBook Download (2023)
Carl Hanser Verlag GmbH & Co. KG
CHF 38,95
Grundlagen, Objektorientierung und fortgeschrittene Konzepte

von Christian Kohls; Alexander Dobrynin

eBook Download (2023)
Carl Hanser Verlag GmbH & Co. KG
CHF 38,95