Programming .NET Components and over 670,000 other books are available for Amazon Kindle – Amazon’s new wireless reading device. Learn more

Programming .NET Components
 
 
Start reading Programming .NET Components on your Kindle in under a minute.

Don’t have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

Programming .NET Components [Paperback]

Juval Lowy (Author)
4.8 out of 5 stars  See all reviews (65 customer reviews)


Available from these sellers.


12 new from $2.75 39 used from $0.01

Formats

Amazon Price New from Used from
Kindle Edition $27.15  
Paperback $30.17  
Paperback, April 2003 --  
There is a newer edition of this item:
Programming .NET Components, Second Edition Programming .NET Components, Second Edition 4.8 out of 5 stars (65)
16 used & new from $6.60

Customers Who Bought This Item Also Bought


Editorial Reviews

Product Description

The introduction of the Microsoft® .NET framework not only brings developers a powerful, cohesive toolset for the development of new Windows and Web applications -- it also replaces COM as the technology of choice for building components on Windows platforms. Components are the fundamental building blocks of .NET applications; they can both simplify and add flexibility to complex applications. Applied properly, component-oriented programming enable reuse, allow for long-term maintenance, application extensibility and scalability. Programming .NET Components offers a complete introduction to the new Microsoft .NET component model, focusing on the aspects of .NET that make it ideal for building reusable, maintainable, and robust components. Author Juval Löwy, a noted authority on component-oriented programming, teaches the intricacies of .NET component programming and the related system issues to application developers, along with relevant design guidelines, tips, best practices, and known pitfalls. The book is packed with helpful original utilities aimed at simplifying the programming model and increasing the developer productivity.

About the Author

Lowy is a software architect and the principal of IDesign, a .Net-focused consulting and training company.

Product Details

  • Paperback: 480 pages
  • Publisher: O'Reilly Media; 1st edition (April 2003)
  • Language: English
  • ISBN-10: 0596003471
  • ISBN-13: 978-0596003470
  • Product Dimensions: 9.1 x 6.9 x 1.1 inches
  • Shipping Weight: 1.7 pounds
  • Average Customer Review: 4.8 out of 5 stars  See all reviews (65 customer reviews)
  • Amazon Bestsellers Rank: #971,332 in Books (See Top 100 in Books)

More About the Author

Juval Löwy
Discover books, learn about writers, read author blogs, and more.

Visit Amazon's Juval Löwy Page

Inside This Book (learn more)
Browse and search another edition of this book.


Books on Related Topics (learn more)
 
 

What Do Customers Ultimately Buy After Viewing This Item?

Programming .NET Components
76% buy the item featured on this page:
Programming .NET Components 4.8 out of 5 stars (65)
Programming WCF Services: Mastering WCF and the Azure AppFabric Service Bus
8% buy
Programming WCF Services: Mastering WCF and the Azure AppFabric Service Bus 4.5 out of 5 stars (73)
$34.64
CLR via C# (Dev-Pro)
6% buy
CLR via C# (Dev-Pro) 4.7 out of 5 stars (59)
$37.79
Programming C#: Building .NET Applications with C#
6% buy
Programming C#: Building .NET Applications with C# 4.1 out of 5 stars (210)
$29.67

Tags Customers Associate with This Product

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

Your tags: Add your first tag
 

 

Customer Reviews

65 Reviews
5 star:
 (56)
4 star:
 (6)
3 star:
 (1)
2 star:    (0)
1 star:
 (2)
 
 
 
 
 
Average Customer Review
4.8 out of 5 stars (65 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

 
100 of 101 people found the following review helpful:
5.0 out of 5 stars Best advanced C# book I have seen, July 6, 2003
By ueberhund "ueberhund" (Salt Lake City, UT United States) - See all my reviews
(VINE VOICE)   
This review is from: Programming .NET Components (Paperback)
While the book is supposed to be centered on ".NET" components, it's really more about C# than anything else. After the obligatory introduction to .NET, JIT, MSIL, and all the other .NET acronyms, the book gets down to business. In fact, this book really begins where a lot of other C# books tend to end: interfaces and inheritance. There is then discussion on version control, including using multiple versions of an assembly in the GAC. While I have seen this type of discussion in other .NET books, I haven't seen it discussed in the depth that Löwy's book does it.

I think the thing I most enjoyed about this book was the chapter on Remoting. Again, I have seen discussions on Remoting in other books (including Microsoft's own MSDN documentation), but no where have I seen as thorough a discussion with as many useful examples as in this book.

Other topics covered in this book include multithreading, asynchronous calls, serialization (including various types of serialization formatters), interception, and security. This book is not for the beginning .NET programmer. If you're looking for a good introductory C# book, pick up a copy of Jesse Liberty's book. If you're looking for a intermediate to advanced text, then this is one of the very best I have seen. More of the "hard" stuff to do in .NET is covered in this book than in any other place I have seen. I can honestly say that this is the best advanced C# book I have ever seen.

Help other customers find the most helpful reviews  
Was this review helpful to you? Yes No


 
36 of 37 people found the following review helpful:
5.0 out of 5 stars Take the next step, August 7, 2004
By dannomite "Dan Maltes" (Cornwall, NY USA) - See all my reviews
This review is from: Programming .NET Components (Paperback)
This book is about half the size of many of my other .NET programming books, and yet I've used about twice as many concepts from it than the bigger books. Computer books are just bloated today because publishers know we knowledge hungry programmers are drawn to the supersized books. Well, this book breaks the mold. It is clear, concise, potent and modestly sized. For example, chapter 11 on context and interception and the logging component example is awesome. If you want to take the next step as a .NET programmer, read this book.
Help other customers find the most helpful reviews  
Was this review helpful to you? Yes No


 
24 of 24 people found the following review helpful:
5.0 out of 5 stars Excellent book on .NET development, one of the best, December 3, 2003
This review is from: Programming .NET Components (Paperback)
When I was reading the first three chapters of this book I could have sworn that it was miss-titled; it should have been called Component Oriented Programming in .NET. Just so we get this straight, this is not a book about the wonderful components in the .NET Framework that Microsoft has provided -- this is a book about CREATING components in the .NET Framework.

The next item that needs to be clarified: What is a component? If you are from the Delphi/VCL world, a component is a non-visual object that can be manipulated in design-time with the mouse and the property browser, while usually being dragged onto a form (TTimer, TDatabase, TSession, TTable, etc). But in this book a component is a class -- the simpler the class, the better. No inheritance unless absolutely necessary, no class hierarchies, but interfaces are cool.

Now, once you get beyond the philosophy lessons of the first three chapters, you are left with one outstanding book on practical .NET development. The chapter on Events is worth the price of admission alone. The chapter on Versioning is excellent as well, but the rest of the sections are every bit as good.

Many of the topics covered in the book are not things you will find in the help files, or if they are, they are too scattered to be useful. What is covered: a large number of best practices, defensive coding techniques (again the chapter on Events is gold), and general you-really-need-to-know-this topics.

One note, some of the topics covered are very large (Remoting and Security are two examples), and if you are interested in those topics, there are other books that deal with them individually.

Summary: if you are into creating top-quality .NET software you should own this book.

Help other customers find the most helpful reviews  
Was this review helpful to you? Yes No

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

5.0 out of 5 stars Required reading for serious .NET development
I read this book several years ago and have since returned to it every two years or so for a light re-read. I consider it a member of a very small group of elite . Read more
Published 11 months ago by Jeremy Jarrell

5.0 out of 5 stars A great conceptual\cookbook reference for any intermediate .NET developer
I think of this book as a cookbook without the fat, or a concept book with some meat. The book discusses topics that are often glossed over in introductory books; exactly the... Read more
Published 19 months ago by S. Wolfe

5.0 out of 5 stars Can be considered a general, concise book on Software Programming...
Microsoft technology has generated some really good books on software programming over the years. This book is definitely one of them. Read more
Published 20 months ago by Jake Gay

5.0 out of 5 stars .Net on Steroids !
A Classic Book that begins it's journey, where all books end. The true difference between a casual programmer and a disciplined programmer is more prominent in his/her code when... Read more
Published on April 25, 2008 by S. Devasundaram

5.0 out of 5 stars One Of A Kind On .NET Components And C# Programming
Without any second thought I will place this book among the best books on the subject ever published. Read more
Published on February 26, 2008 by Armen Jamkotchian

4.0 out of 5 stars Great, but....
This book is incredibilly well written and has a very comprehensive way of explaining the ways of Component oriented programing. Explains its differences betweent COP and OOP. Read more
Published on August 24, 2007 by Fabio Santos Franco

5.0 out of 5 stars Excellent book with an eye for Component Oriented Design
While going over component and control design, this book teaches the principles of the component-oriented design philosophy. Read more
Published on August 16, 2007 by William Klar

1.0 out of 5 stars Good for Newbies
Book goes through the entire process of building controls, nothing is untouched. It dwells however much too long on the 'standard' topics of installation, distribution, setting up... Read more
Published on June 7, 2007 by H. J. Alles

4.0 out of 5 stars Excellent in what it covers
Pros:
Material that was covered was done an a very concise, clear and justfied manner. More so than just about any other computer book I have read. Read more
Published on March 7, 2007 by Richard Collette

4.0 out of 5 stars Interfaces Factoring
On page 73 of this book the author wrote:

" An in-depth discussion of how to decompose a system into components and how to discover interface methods and properties... Read more
Published on February 1, 2007 by Twain Mark

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
What is your FAVORITE Software Development book? 14 2 days ago
Search Customer Discussions
Search all Amazon discussions
   



So You'd Like to...


Create a guide


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.