The 10 Wii Systems are now on sale for $149! Click the buy button under seller prostar.
Thanks for participating in our Wii promotion. We hope you were one of the lucky 10. If not, don't worry there are still more Wii's available starting at $249. If you are a seller and want to be a part of the next promotion, please contact us at marketing@wigix.com.
The 10 Wii Fits are now on sale for $49! Click the buy button under seller prostar.
Thanks for participating in our Wii Fits promotion. We hope you were one of the lucky 10. If not, don't worry there are still more Wii Fit's available starting at $89. If you are a seller and want to be a part of the next promotion, please contact us at marketing@wigix.com.
Suggested item changes have been submitted successfully. They will be reflected as soon as the Page Owner reviews and accepts them.
You are currently editing this page
You may now modify the category, images, specifications and/or "Did you know" items. When finished, click the "Submit Changes" button. Your changes will be reviewed by the appropriate Page Owner.
In some cases, an item may be suitable for multiple categories. To ensure the uniqueness of an item in Wigix catalog, an item can only exist physically in a single category. However, the item may appear in different categories via the concept of "Alternate Category". If you think the item should also appear in other categories, please make the suggestions below.
Select a Category
In progress, please wait a moment !
Would you like to edit the page or review any new submission of the page content change?
To start selling an item on Wigix, you need to have the item in your portfolio first then create a sell order on it. Would you like to add the item to your portfolio?
It appears that you have multiple of the same items in your portfolio. Please go to Your Portfolio, locate the item and select "Sell this item" from the drop-down list.
There's no enough quantity left to create a new sell order. You may update the quantity of this item in your portfolio first then create a sell order or add new items to your portfolio.
Would you like to add new items to your portfolio?
Add payment account.
In order to sell an item on Wigix, a paypal account or a google checkout account is required for a seller to receive payment. You may store your paypal account in the "Personal" section of your profile.
This is a list of sellers that are currently offering "Microsoft® Visual C#® .NET Step by StepVersion 2003 by John Sharp" for sale. To view the details of a seller's individual listing, such as condition and shipping policies, click on the "Details" button. If you have a specific question about a specific seller's listing, please click on the contact link next to the seller's name to ask them your question directly.
Granted, it probably helps if you're migrating from another language (like I was - from VB), but it's an excellent text which gives you plenty of background & extra information, then takes you into step-by-step exercises to reinforce what you just read. This methodology really worked for me, and I highly recommend this book. Initially, I was concerned that it was going to be literally just step-by-step instructions on how to use C# and Visual... Studio .NET, but the information between the exercises, plus additional notes and best practices really helped me out with learning the language and some potential gotchas. more
Amazon Customer
May 29, 2005
5 of 5 people found this review helpful
From:
good first book on visual c#
I've been using Visual C++ 6.0 at work for the past few years and was looking for something to help me with transitioning to C# and .NET. I settled on the 2003 version of this book and was not disappointed. The title says it all really - it's a concise and tutorial-like introduction to C# programming using Visual Studio.NET. The book is very well organized with "how-to" summaries at the end of each chapter, and numerous notes/hints throughout... that list the sometimes subtle differences between C++/Java and C#.
This was my first step-by-step book and I liked how the exercises were presented. In the early chapters, you are typically asked to open an existing project and make code or design modifications that demonstrate the topic at hand. This approach helps to speed things along and I didn't feel at any time that I was bogged down on any one chapter or exercise for too long. Before each exercise, I made a point of reviewing all of the application code first, including the forms code generated by Visual Studio. For example, as early as Chapter 2, I could see more or less how GUI event handlers are registered, even though I hadn't yet reached the section on WinForms or delegates.
One suggestion I do have for the authors in any future editions is to talk more about configuring your PC before doing any ADO.NET or ASP.NET programming, e.g., how to troubleshoot when things aren't working. Even though I had MSDE and IIS installed properly, I initially had problems creating the Northwind sample database, and also with creating new ASP projects in Visual Studio (VS needs to be able to connect to your IIS server first before it can create/open ASP projects). The book didn't help me much here (neither did Visual Studio's cryptic error messages) and I had to dig around on MSDN and CodeGuru to get things working.
With regards to content, there are a couple of noteworthy items. The chapter on value and reference types does a very good job of explaining concepts such as "boxing" using diagrams and sample code. The diagrams show you exactly what are the contents of stack versus heap memory as each line of sample code is executed. Another section I liked was the sample exercise in the chapter on inheritance, which simulated a source file parser using the Visitor design pattern. The authors could have explained the program better though, by using class diagrams possibly.
Overall I am quite pleased with this book and the outcome of having gone through all of the exercises. Now it's time for me to look for something more advanced on topics such as threading, .NET remoting, GDI+, ...
more
torre015
Mar 15, 2005
5 of 5 people found this review helpful
From:
Great book for learning C#
This book is a great introduction to the C# language. The only drawback is that you need Visual Studio.NET to be able to complete the exercises; but then again, C# is an invention of Microsoft si it is understandable.
Some reviewers have expressed concern for it not being for beginners. Be aware that the object oriented model of programming has been an integral part of every language since the invention of C++ in the 1980's. If you are... interested in non-OOP languages you can try C. If you like to understand a little more about OOP before starting this book grab Beggining C# Objects as an intro both to the language and the method. more
hark777
Aug 28, 2005
10 of 12 people found this review helpful
From:
Not in depth enough
Coming from a VB background I chose two books to step up to C#. The first was Charles Petzolds excellent book, programming in the key of C#. My second book was this one. While this fills in many holes left out of Petzolds book, (mainly to do with the .NET framework & the .NET IDE, since Petzold deals purely with the C# language) it does so at the expense of clarity & in depth explanations as to `why' we do certain things. Often this book uses... explanations dealing with as yet explained methods or objects, hence its flow is not contiguous, & the information supplied shallow. Had I not first worked through the `Key of C#' book, I would have been left scratching my head with this one. As in one example, it uses the conditional ternary operator statement having not yet explained this simple yet enigmatic little piece of code. (Fortunately I'd learnt this in the previous book). At other times, it gives examples that don't result in anything of value as code methodology. In another example the authors declare a property as 'money' without any prior indication of creating a money class, which led me to search MSDN online documentation for a non existent money data type that i may have overlooked. Not good. They have a skill of muddying simple concepts with overly complex examples. I came away thinking this book would be more for the experienced C++ developer, however, it doesn't really supply any ground breaking information on C# or its framework; it only skims over what could be discovered by yourself with a bit of exploration.
As I said originally, it does serve to fill in some gaps left out by other books, but I would steer away from this book if you are a beginner or even new to OOP. Another thing that in fact annoyed me about this book was its false claim that the .NET guidelines recommend against ANY use of Hungarian Notation at all. In fact the guidelines only recommend against using hn for exposed members. Private variables are still up to the team to decide upon. This was personal point of view & not related to true recommendations.
This book may better well serve as a reference but definitely not as a step by step beginner's book. It will leave you with more questions than answers. I would go for a book more dedicated to a particular facet of .NET, rather than this `all in one' step by step. For that reason, I'd probably choose Petzolds if you're looking to learn the C# `language', (It is also an excellent start in learning about OOP, though it doesn't touch upon Interfaces). There are also other excellent books on OOP, ADO & the .NET framework.
The style of this book leads me to believe it was written with the C++/Java developer in mind who want a quick jump to C#, rather than the VB developer who needs to adapt to the new framework. I'd only buy it if what you're looking for is a brief overview of the lot.
more
tswiftma
Jul 8, 2005
4 of 5 people found this review helpful
From:
Great way to learn C# with useful examples
This is by far one of the best programming books I have ever bought. The authors explain the C# concepts very well and walk you through examples that not only teach the language concepts but also give you useful programming tips that you will need. For example, the chapter on using Methods gives you an example of the method that shows you how to read input from a console.
That said, this is not a beginners programming book. You really need... some knowledge of object oriented programming and it helps to be familliar with the Microsoft IDE (either VC++ or VB). If you have some experience with those then this is a great book to learn C#. Also I find the Microsoft Press "Step By Step" book much easier to follow then their other reference books. more
"Microsoft® Visual C#® .NET Step by StepVersion..." Videos (0)
Got a question about Microsoft® Visual C#® .NET Step by StepVersion 2003 by John Sharp?
Ask The Owners is a great way to try and get information and opinions from actual owners of Microsoft® Visual C#® .NET Step by StepVersion 2003 by John Sharp by asking all of them the same question simultaneously. Please DO NOT ask questions about specific items for sale here, instead please send the seller a private message.
"Microsoft® Visual C#® .NET Step by StepVersion..." Blog (0)
Welcome to Wigix Blog. Here you can make your voice heard, rant and rave about any item you chose.
Start by entering a name for your blog.
Your Blog Name
* = Required Field
"Microsoft® Visual C#® .NET S..." has been successfully added.
"Microsoft® Visual C#® .NET S..." has been successfully added.
Please post a review of the product.
Are you sure you want to remove this item from your watchlist?
We detected that there is already an open sell order on this item. Would you like to purchase the item?
Once you select to "Make an Offer" on this item with a "Make me Sell" price,
you will be prompted to create a buy order against this particular item.
We'll also notify the owner of your purchase proposal and keep you posted on the owner's decision.
You've successfully added the Microsoft® Visual C#® .NET Step by StepVersion 2003 by John Sharp to your Wish list.