98 used & new from $0.01

Have one to sell? Sell yours here
 
 
Microsoft® Visual C#® .NET Step by Step--Version 2003 (Step By Step (Microsoft))
 
 
Tell the Publisher!
I’d like to read this book on Kindle

Don’t have a Kindle? Get your Kindle here.
 
  

Microsoft® Visual C#® .NET Step by Step--Version 2003 (Step By Step (Microsoft)) (Paperback)

~ (Author), Jon Jagger (Author) "Microsoft Visual C# .NET is Microsoft's powerful, component-oriented language..." (more)
Key Phrases: struct that implements the interface, yellow cursor jumps, int rhs, Visual Studio, Design View, Microsoft Visual (more...)
3.5 out of 5 stars  See all reviews (24 customer reviews)


Available from these sellers.


23 new from $2.46 75 used from $0.01

Customers Who Bought This Item Also Bought

Microsoft® ASP.NET Programming with Microsoft Visual C#® .NET Version 2003 Step By Step (Step By Step (Microsoft))

Microsoft® ASP.NET Programming with Microsoft Visual C#® .NET Version 2003 Step By Step (Step By Step (Microsoft))

by G. Andrew Duthie
Microsoft® Visual C++® .NET Step by Step--Version 2003 (Step By Step (Microsoft))

Microsoft® Visual C++® .NET Step by Step--Version 2003 (Step By Step (Microsoft))

by Julian Templeman
Microsoft  Visual Basic  .NET Step by Step (Step By Step (Microsoft))

Microsoft Visual Basic .NET Step by Step (Step By Step (Microsoft))

by Michael Halvorson
Microsoft® Visual C#® 2005 Step by Step (Step By Step (Microsoft))

Microsoft® Visual C#® 2005 Step by Step (Step By Step (Microsoft))

by John Sharp
4.2 out of 5 stars (34)  $26.39
Microsoft® Visual C#® .NET Deluxe Learning Edition-Version 2003 (Pro Developer)

Microsoft® Visual C#® .NET Deluxe Learning Edition-Version 2003 (Pro Developer)

by Microsoft Corporation
Explore similar items

Editorial Reviews

Product Description

Teach yourself Visual C# .NET version 2003—and start developing Microsoft .NET–connected applications—one step at a time. Master language fundamentals at your own pace and use the learn-by-doing exercises to dig in and code!

Product Details

  • Paperback: 672 pages
  • Publisher: Microsoft Press (April 16, 2003)
  • Language: English
  • ISBN-10: 0735619093
  • ISBN-13: 978-0735619098
  • Product Dimensions: 9 x 7.3 x 1.8 inches
  • Shipping Weight: 2.8 pounds
  • Average Customer Review: 3.5 out of 5 stars  See all reviews (24 customer reviews)
  • Amazon.com Sales Rank: #553,390 in Books (See Bestsellers in Books)

More About the Author

John Sharp
Discover books, learn about writers, read author blogs, and more.

Visit Amazon's John Sharp Page

Inside This Book (learn more)

Citations (learn more)
This book cites 1 book:



What Do Customers Ultimately Buy After Viewing This Item?

Microsoft® Visual C#® .NET Step by Step--Version 2003 (Step By Step (Microsoft))
62% buy the item featured on this page:
Microsoft® Visual C#® .NET Step by Step--Version 2003 (Step By Step (Microsoft)) 3.5 out of 5 stars (24)
Microsoft Visual C# 2008 Step by Step
16% buy
Microsoft Visual C# 2008 Step by Step 4.2 out of 5 stars (24)
$26.39
Microsoft® Visual C#® 2005 Step by Step (Step By Step (Microsoft))
15% buy
Microsoft® Visual C#® 2005 Step by Step (Step By Step (Microsoft)) 4.2 out of 5 stars (34)
$26.39
Microsoft  Visual C#(TM) .NET Step by Step (Step By Step (Microsoft))
4% buy
Microsoft Visual C#(TM) .NET Step by Step (Step By Step (Microsoft)) 3.6 out of 5 stars (40)

Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 

Your tags: Add your first tag
 

Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

 

Customer Reviews

24 Reviews
5 star:
 (11)
4 star:
 (2)
3 star:
 (5)
2 star:
 (1)
1 star:
 (5)
 
 
 
 
 
Average Customer Review
3.5 out of 5 stars (24 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

 
8 of 8 people found the following review helpful:
5.0 out of 5 stars Excellent Guidebook, January 4, 2005
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.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
5 of 5 people found the following review helpful:
5.0 out of 5 stars good first book on visual c#, May 28, 2005
By steve (toronto, canada) - See all my reviews
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+, ...
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
5 of 5 people found the following review helpful:
5.0 out of 5 stars Great book for learning C#, March 14, 2005
By Juan Torres Reveron (Birmingham, Alabama USA) - See all my reviews
(REAL NAME)   
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.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)


Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews

4.0 out of 5 stars Close but no wee-oh
This book does, indeed, take you through C# step by step. It does a farly good job of introducing concepts and showing them in action. Read more
Published on June 10, 2006 by E. Hobin

4.0 out of 5 stars It's a pretty good book for beginner who has some programming experience
this is pretty good book for a beginner who has some programming experience and wish to learn C#. i have read some of the comments such as "Definitely Not For Beginners". Read more
Published on March 12, 2006 by Goh Siang Hwee

1.0 out of 5 stars lackluster (not step by step) or for beginners
It starts out in the first ten chapters explaining the concepts pretty well, and then it turns into an example-fest without any consideration for its namesake ("step by step")... Read more
Published on December 20, 2005 by C. Widmer

5.0 out of 5 stars Visual C# .Net
One of the best book I have seen on the subject for people new to C# .Net, but know some other language.
Published on September 9, 2005 by S. Y. Towliati

3.0 out of 5 stars 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. Read more
Published on August 28, 2005 by Ant

3.0 out of 5 stars A limited but still useful introduction to C#
If you are already familiar with C++ and/or Java, this book is most likely too basic for an introduction to C#. I have been using "Microsoft Visual C# . Read more
Published on July 12, 2005 by Vick

5.0 out of 5 stars 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... Read more
Published on July 7, 2005 by Test Guy

3.0 out of 5 stars Not a tutorial almost a text book, more of a referance
This book is detail oriented, and goes into some depth into the structure and capablities of the language. Read more
Published on July 5, 2005 by Naked Pagan

5.0 out of 5 stars For experienced programmers only
The problem with C# is that it is a product created by Microsoft solely for Microsoft's programming environment (Visual Studio . Read more
Published on May 3, 2005 by Andrew

1.0 out of 5 stars Definitely Not For Beginners
It has been a number of years since I touched a programming language, and none of my experience was in Object Oriented stuff. This book has been patently unhelpful. Read more
Published on March 1, 2005 by J. Barrett

Only search this product's reviews



Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Discussion Replies Latest Post
Textbooks for Kindle DX? 61 2 days ago
textbook scam 66 7 days ago
Amazon is a great place to buy textbooks! 35 19 days ago
Search Customer Discussions
Search all Amazon discussions
   




Product Information from the Amapedia Community

Beta (What's this?)


Look for Similar Items by Category


Look for Similar Items by Subject

 

Feedback

If you need help or have a question for Customer Service, contact us.
 Would you like to update product info or give feedback on images?
Is there any other feedback you would like to provide?

Your comments can help make our site better for everyone.



Your Recent History

 (What's this?)

After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in.