Skip to content
Paperback Microsoft.Net for Programmers Book

ISBN: 1930110197

ISBN13: 9781930110199

Microsoft.Net for Programmers

Shows intermediate and advanced programmers how to deploy a single .NET application with multiple interfaces so that it can be accessed from the command line, through a Windows GUI, by means of a Web browser, or using a mobile device.

Recommended

Format: Paperback

Condition: Good*

*Best Available: (ex-library)

$6.29
Save $28.66!
List Price $34.95
Almost Gone, Only 1 Left!

Customer Reviews

5 ratings

Excellent Presentation of Major .NET Features and Fun, Too

With the release of Microsoft's .NET platform, many developers are just starting to dig into the massively rich offering of classes, tools, program types, and capabilities that are available. This can surely be a daunting task for the average (and even above average) Visual Basic or ASP developer. In his book "Microsoft .NET for Programmers", by Manning, Fergal Grimes tackles the job of presenting many of the major features available in .NET through a most enjoyable and ingenious approach. The author uses a case study of implementing "video poker" in many different guises to give the reader an understanding of the different .NET programming types. The book proceeds from development of the core poker engine, employing object-oriented programming techniques and design patterns which are tested from a console interface, to the development of more distributed applications involving databases, remoting, messaging, Windows client interface, web-based client interface, and web services versions. The use of C# should not deter VB programmers from reading this book. The discussion of fundamental concepts are well written, and the code is understandable without being overly complex or obtuse. The ASP.NET, Web Services, and Remoting sections are well-worth a look. Above all, Grimes has taken a massive subject and reduced it to a fun series of programs that is more than just an introduction to .NET.

Great book for the intermediate to advanced programmer

Stellar book, but not for the faint of heart! This book is targeted for the intermediate or seasoned programmer and provides a fast track for transitioning to .NET. Fergal chose a simplistic, yet appropriate, sample application (poker) that he builds throughout the book. Code samples are plentiful. A good balance of theory and code provides a concise overview of key concepts of .NET. Be sure to note that all of the book's code samples are all written in C#. This was not apparent to me when I first obtained the book, though the advertising of this fact is not hidden. The author promises that a VB.NET version of the book is in progress. He also provides a quick, 30-page overview of C# in the appendix so that an experienced programmer can quickly come up to speed on the language. The book covers simplistic and advanced .NET topics, including assemblies, ADO.NET, remote services, XML web services and web forms. It even addresses programming in IL!

Well-written with a great, pracitcal example

OVERALL ASSESSMENTThis book is aptly named. Not for the beginner, but for the experienced programmer seeking a deeper understanding of .NET development and practical examples of distributed computing, I found this book to be very helpful, very succinct, and very entertaining. Contrary to some of the other titles on the market, Grimes doesn't try to pad the book with 28 chapters, the first 20 of them being the obligatory content explaining the role and function of .NET, what XML, SOAP, and UDDI are, and a primer in coding, and only briefly getting into the core purpose of the book. It gets right into the tough stuff. Grimes instead gives a higher-level viewpoint of programming with .NET, explaining advanced concepts like .NET's garbage collection methodology, memory management, and applications architecture planning, from a best-practices approach. Grimes bases his book's existence on an example that spans the entire text - building a poker game app. Throughout the text, Grimes constructs and expands upon a concept that is simple enough to be relative to everyone yet complex to be an effective lesson in distributed app design. He abstracts this app out to 11 different versions all calling the same app, including a Windows version, a Web-based version, a message queue, a console version accessible through UNIX telnet commands, a mobile version and an XML Web service, which is a great lesson in showing the ease with which .NET developers may create powerful distributed applications.It's beautifully written, well-proofread, and quite comprehensive for only 288 pages (not counting the excellent appendices dealing with an Introduction to C#, and detailed source code for the examples). It's a great addition to the reference library of the advanced programmer, or the intermediate developer looking to take their game to the next level. In short, it's a very disciplined, structured approach to working with .NET.WHAT I DO LIKE - The use of graphics is excellent - easy to follow and nicely arranged. Well documented advanced .NET concepts such as the object-oriented use of delegates, serialization techniques through XML, and separation of code and content in ASP.NET will be appreciated by the experienced developer. - The use of the poker game app as a case study was very entertaining and very educational. Unlike other books that try to give case studies focusing on the development of applications from varying industries (i.e., a news center publishing application, a site's statistics tracker, a classroom monitoring app for educators), which tends to disenfranchise many developers not familiar with the precise working conditions of the specific industry, Grimes' poker example is something relevant to 9 out of 10 readers, and fun! - The app is simplistic enough to show some of the more fundamental necessities, yet complex in its design, dealing with a wide range of probabilities. And you'll enjoy playing it almost as much as you will building it. - The opti

Excellent choice - realworld approach

The author does a great job with this book. A variety of technologies (such as Windows Forms, Web Services, ASP.NET, ADO.NET to name a few) are presented in a very readable, concise, no-nonsense fashion. Each chapter is outlined very well. Code and illustrations mingled with the topic that is being discussed (All examples are in C#.) so it is easy to understand what is going on and how to actually do it yourself.I think this book would be good both for the beginner setting out to learn .NET, as well as the C# expert-- it would make a great reference to have on your desk when you need to quickly find an example or explanation of something. I highly recommend it for anyone serious about learning the fundamentals of .NET with a C# tilt.

.NET tour guide.

This book is very well written, both technically and grammatically (which is something you can't say for all computer books). While it would be next to impossible to cover .NET in it's entirety, this books does an excellent job covering the fundamentals of .NET in a reasonable number of pages: The CLR - This section is dedicated to the CLR, it's types (there is a descriptive explanation on the difference between value and reference types), System.Object (the base class of every .NET type), deterministic finalization, assemblies (multi-file, private, global and downloadable assemblies are all covered), reflection (dynamically examining a type at runtime), and the basics of intermediate language. At the end, the author builds a very simple compiler to demonstrate how the compilers for .NET translate instructions into intermediate language, which in turn is executed by the CLR at runtime.ADO.NET - Through many code samples, ADO.NET is given adequate coverage. The DataSet (equivalent to a disconnected ADO Recordset) and DataReader (equivalent to a server side forward-only ADO Recordset) are both covered. Updating a database, both via the DataSetAdapter and directly through Command objects is also covered. This chapter also covers using a DataSet to produce XML and how to serialize (an exciting new topic in .NET) object instances to XML. It would be impossible to cover every aspect of ADO.NET in a single chapter, but this chapter does provide enough information to get acquainted with your available data access options. The MSDN documentation included with the .NET framework or VS.NET should be your next step in figuring out what each property and method does. If you have used ADO in the past, because they share similar interfaces, ADO.NET shouldn't seem that foreign to you.Remoting - This was my favorite chapter. Remoting in .NET is the means for communication between assemblies, processes and remote computers. It's the replacement for DCOM, and because it is able to work using HTTP, it's finally able to work over corporate firewalls without too much hassle. There are a ton of code samples and diagrams to help understand nearly every aspect of Remoting: the available options (Client Activated, SingleCall, and Singleton), configuration, leasing and handling remote events. If your interested about Remoting, it would be in your best interest to code up the samples in this chapter and run them to see what is actually happening with each different option (Client Activate, SingleCall and Singleton) and configuration setting (leasing, channel type, events, etc...).Web Services - Web Services are a new option in .NET. The closest comparison from days of old (feels kind of funny saying that) would be XML over HTTP or Soap. I never used the VB Soap toolkit, so I can't comment on it, but I've found Web Services in .NET extremely easy to use. The basics of creating a Web Service are covered, as are more advanced topics such as WSDL, Discovery and U
Copyright © 2023 Thriftbooks.com Terms of Use | Privacy Policy | Do Not Sell/Share My Personal Information | Cookie Policy | Cookie Preferences | Accessibility Statement
ThriftBooks® and the ThriftBooks® logo are registered trademarks of Thrift Books Global, LLC
GoDaddy Verified and Secured