|
YOUR FEEDBACK
|
TOP MICROSOFT .NET LINKS Book Review .NET Gotchas
Using a technology well
By: Steven Mandel
May. 10, 2006 04:15 PM
You might be wondering what this book is all about. As the author explains, the dictionary's definition of a gotcha is "an unexpected usually disconcerting challenge, revelation, or catch". Mr. Subramaniam defines the gotchas in his book as "those things that pop up unexpectedly when you're programming in .NET. … In this book I focus on the .NET framework and features that have consistently exhibited behavior that was not obvious to me." Mr. Subramaniam explains that the purpose of his book is not just to explain how to use a technology "but how to use it well and do things right". The book is intended for ".NET programmers in the trenches". He assumes that you are fairly familiar with .NET and all gotchas are presented in C# and VB.NET. The book is organized into 8 chapters focusing in on different areas of interest. Each topic in a chapter includes a discussion of the gotcha, code examples and possible solutions. There are also footnotes and a bibliography for further study of the topic.
I would like to present a Gotcha that I have encountered that Mr. Subramaniam touches on in Gotcha #2: struct and classdiffer in behavior" and is discussed by Les Smith in his article located at www.knowdotnet.com/articles/boxedstructures.html. In .NET a class is treated as a reference type while a structure is treated as a value type. The gotcha occurs when you place a structure inside an arraylist. If you try to iterate through the arraylist to make changes to each structure, you will be surprised to find that the changes do not take effect. In my code below, I declare a structure and an arraylist. I add two entries to the arraylist and then iterate through the list to change the value of gamesPlayed.
Option Strict On The results of this code are:
Bob Smith 0 This is definitely not what you expected but is due to the fact that structures and arraylist are different types. To solve this problem you could do the following:
intCount = 0 By converting the selected entry back into a structure you are now able to change it and then you can put it back into the arraylist with the following results.
Bob Smith 1 .Net Gotchas is a very interesting book that covers a whole slew of topics. It is well worth reading especially if you have encountered the same gotchas and could not discover a way to solve them. YOUR FEEDBACK
MICROSOFT .NET LATEST STORIES
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
|
SYS-CON FEATURED WHITEPAPERS MOST READ THIS WEEK BREAKING NEWS FROM THE WIRES
|
|||||||||||||||||||||||||||||||||||||||