Chapter 6: Memory Corruption Part II - Heaps
by
Addison Wesley
on
Nov 16, 2009
This chapter discusses a myriad of stability issues that can surface in an application when the heap is used in a nonconventional fashion. Although the stack and the heap are managed very differently in Windows, the process by which we analyze stack- and heap-related problems is the same.
|
|
|
|
Chapter 4 - Normalizing a Data Model
by
Addison Wesley
on
Sep 01, 2009
Data normalization is probably one of the most talked-about aspects of database modeling. Before building your data model, you must answer a few questions about normalization. These questions include whether or not to use the formal normalization forms, which of these forms to use, and when to denormalize.
|
|
|
|
|
|
|
|
Writing Windows C# Programs
by
Addison Wesley
on
Jul 21, 2009
The C# language has its roots in C++, Visual Basic, and Java. Both C# and VB.Net use the same libraries and compile to the same underlying code. Both are managed languages with garbage collection of unused variable space, and
both can be used interchangeably. Both also use classes with method names that are very similar to those in Java, so if you are familiar with Java, you will have no trouble with C#.
|
|
|
|
Chapter 5: Advanced C# Class Construction Techniques
by
Apress
on
Jan 13, 2009
This chapter rounds out your introduction to the core aspects of the C# language by examining a number of advanced (but extremely useful) syntactic constructs. To begin, you learn how to construct and use an indexer method.
|
|
|
|
Chapter 6: Collections of Objects
by
Apress
on
Dec 16, 2008
The properties and behaviors of some common collection types,How collections enable us to model very sophisticated real-world concepts or situations,How we can define our own collection types
|
|
|
|
Chapter 1: Introduction to C#
by
Apress
on
Dec 08, 2008
This Chapter will introduce you to C#. You will learn how to write and compile C# programs, C# syntaxes, data types, control flow, classes and their members, inter-faces, arrays, and exception handling I'll begin with an overview of the language.
|
|
|
|
Chapter I: Attribute Fundamentals
by
Apress
on
Dec 09, 2008
IN THE COURSE OF DEVELOPING an application, it is quite typical to have core functionality
contained in methods that are invoked by other specialized methods.
|
|