|
GOLSCO Books Online Store | UK | Germany |
| books | baby | camera | computers | dvd | games | electronics | garden | kitchen | magazines | music | phones | software | tools | toys | video |
| Help |
| Books - Computers & Internet - Computer Science - Look no further: best VS.NET/C# books |
| 1-4 of 4 1 |
| Featured List | Simple List |
|
|
|
Go to bottom to see all images
Click image to enlarge
|
.NET Framework Essentials (2nd Edition) by Thuan L. Thai, Hoang Lam Average Customer Review: Paperback (01 February, 2002) list price: $29.95 US | Canada | United Kingdom | Germany | France Reviews (10)
For anyone who has ever developed with Java, .NET is going to seem awfully familiar. Both run on a virtual machines (though not exactly in the same way.) Both provide a garbage collector, thread management, exception handling, and a fully object-oriented programming paradigm. The class structures of their respective SDKs are eerily similar, and even the syntax of Microsoft's newly touted C derivative, C# (pronounced c-sharp), owes a lot to the Java programming language. There are some key differences that differentiate Microsoft's system from Sun's, but as a reader who has coded in Java, I appreciate the fact that the authors often make comparisons between the two. With this approach, Thai and Lam have helped me dismiss my initial suspicion that .NET is really just Java for Windows, and have properly explained why Microsoft's framework is in some ways even more ambitious than Java originally was. .NET Framework Essentials is nicely broken up into eight chapters, each of which addresses the interests of potential software developers. The first four chapters give an overview of the framework's design goals and discuss software development issues such as how to program for .NET, and how to work with .NET components. The second half of the book deals with the four main services provided by .NET: data processing (ADO.NET and XML), Web Services, Web Forms, and Windows Forms. A chapter is devoted to each, and enough code examples are given to illustrate the concepts that you'll finish each topic with at least a general idea of how to approach a problem in that domain. Again though, this book is an overview, and is not meant to be a reference manual by any means. One of the strongest points about this book is that it doesn't rely on the reader having access to a copy of Visual Studio.NET. Though it is mentioned several times, all code examples are given with instructions for building using the command-line compilers that come standard with the SDK. This allows readers to download the SDK from Microsoft and try the applications on his or her own computer for free. This book does a very good job of covering the comprehensive tools provided by Microsoft, and could actually be considered a good reference for the command-line arguments of these programs. An appendix is devoted to this very subject, in fact. There are only a couple of topics that would probably be of interest to experienced developers that I feel were not properly covered in this book. The first is a distinct lack of discussion regarding interoperability between .NET programs and tradition ANSI C++ programs and libraries (or even Windows applications coded using the Win32 API.) .NET is multi-language, but for a language to be part of the club, it needs to conform to .NET's Common Language Specification, which traditional C++ does not do. Microsoft has produced Managed C++ as a possible gateway between the two, but it's not clear at all how well .NET will deal with traditional libraries such as the STL, or even with more specific packages such as OpenGL. This is an issue that should have deserved a few paragraphs in this book, at least. The second issue I had was that given that .NET relies on a common SDK for all of it's languages, and given that this is a book that covers the essentials of the NET framework, it would be reasonable to assume that the SDK would be one of it's main topics. Unfortunately, that's not the case. Having read the book, I understand why that is so, but I could also see this as being slightly misrepresentative for anyone picking this book up off the shelf expecting a reference book on the .NET SDK. All in all, .NET Framework Essentials is an excellent overview of the subject for someone who doesn't know much about it and would like to know more. It targets developers who have experience, and doesn't treat them like fools. In general, it's a read-once book that you might refer to later for it's excellent coverage of Microsoft's command-line tools. ... Read more Isbn: 0596003021 |
|
|
Programming C# by Jesse Liberty Average Customer Review: Paperback (23 July, 2001) list price: $39.95 US | Canada | United Kingdom | Germany | France Editorial Review Jesse Liberty's Programming C# provides an adept andextremely well conceived guide to the C# language and is written forthe developer with some previous C++, Java, and/or Visual Basicexperience. It's no secret that many computer books are pretty muchdevoid of an authorial personality. This title is a winning exception.The author is able to weave in clever examples (using such topics ashis own long experience in computing, his dog, Star Trek, etc.)without being coy or getting in the way of presenting real technicalinformation. Liberty's wide experience in computers and general writingskill shows, as he is able to draw on a wealth of examples to move histext forward. These are a couple of goals at work in ProgrammingC#. First, it's an excellent language tutorial, certainly one ofthe smartest and best available guides to C# as a language. Earlychapters explore basic and obscure language options using inheritance,delegation, interface, and the conventions in C# used to implementthese techniques. The middle part of the book turns toward the .NETFramework itself, with two useful (and somewhat introductory) chapterson both Windows Forms and Web Forms, for standalone and Web-basedapplications, respectively. Later sections crank up the technicalknowledge again with several advanced topics on understanding .NETassemblies and deployment in detail, as well as "reflection" APIs thatallow .NET programs to essentially modify their code at run time. (Onetechnique, reflection emit, which literally writes bytecodes, willdefinitely interest expert readers, though it's unlikely mostprogrammers will need to do this.) Final sections look at the .NETstream classes (rivaled only by Java's for complexity). Liberty looksat basic file and network I/O as well as how objects get serialized andmarshaled both for SOAP and Web services and "normal" .NETremoting. The author's sure hand here in navigating the difficultwaters of C# and .NET makes for a relatively concise text that ischock-full of useful information on C#. Filled with notably clever andinventive examples, this book is possibly this veteran computerauthor's best title to date, and it's sure to be a noteworthy resourceas experienced developers tackle C# for the first time. --RichardDragan Topics covered:
Reviews (165)
Isbn: 0596001177 |
|
|
C#: Your Visual Blueprint for Building .Net Applications (With CD-ROM) by EricButow, ThomasRyan Average Customer Review: Paperback (15 November, 2001) list price: $26.99 -- our price: $17.81 (price subject to change: see help) US | Canada | United Kingdom | Germany | France Reviews (7)
Isbn: 076453601X |
$17.81 |
|
Programming Windows with C# (Core Reference) by Charles Petzold Average Customer Review: Hardcover (19 December, 2001) list price: $59.99 -- our price: $37.79 (price subject to change: see help) US | Canada | United Kingdom | Germany | France Editorial Review Aimed at aspiring C# programmers of all levels, legendary Windows expert Charles Petzold's Programming Windows with C# provides an extremely in-depth and intelligent tutorial to the APIs underpinning Microsoft's .NET Framework. For a generation of programmers, Petzold's Programming Windows: The Definitive Guide to the Win32 API provided a virtual bible on how to get started with Windows development. This massive, handsomely bound hardcover edition attempts the same breadth of coverage for Microsoft's new C# language and the new .NET. With several examples clearly inspired by the earlier C title, this book demonstrates the author's keen eye for showing off and explaining the capabilities of low-level APIs to good effect. The book first outlines basic "Hello World" examples for both a console and Windows Forms. Next, there's coverage of basic support classes (like points and rectangles) before turning toward using these structures in extensive sections on graphics programming. Petzold's traditional strengths as a computer author are in ample evidence here, with many short examples that exercise the capabilities of the new .NET APIs. Veteran readers will recognize the basic shape of the early Win32 title in the organization of this (completely rewritten) C# version in the flow of topics from graphics, keyboard, mouse and timers, and the like. (One production note here is that the order of later chapters does jump around somewhat, circling back to graphics topics several times instead of presenting related APIs in order.) The sections on graphics transforms and how to manipulate images are worthy of note. There's excellent coverage of the possibilities of working with text and fonts output in .NET. Nifty working samples for several types of clocks and shape-drawing demos will let you explore graphical APIs in detail. Several chapters cover basic Windows Forms control programming with buttons, labels, and edit controls and then splitters, ListView, and TreeView controls. This volume closes out with references to files and streams, and math and string APIs. For any developer who wants to create state-of-the-art, "traditional" client-side software, this book is sure to be required reading for its in-depth look at graphics and other leading-edge .NET features. It proves once again that learning low-level APIs in detail is still a good way to learn Windows programming. --Richard Dragan Topics covered: Overview of C# and .NET Windows programming fundamentals; a "Hello World" console application; C# language and object basics; a simple Windows Forms application (creating a main window and handling the paint events); basic .NET structures (including rectangles, points, and colors); text output and scrolling; exploring .NET system information; in-depth tutorial for GDI+ programming: pens, lines, rectangles, and polygons; keyboard processing (plus a custom class for caret processing); graphics transformations (including scaling, linear transforms with matrices); mouse processing (plus processing the mouse wheel); text and fonts (TrueType and OpenType fonts, antialiasing, measuring text); using timers; date and time APIs; a sample code for clocks; drawing and transforming images (displaying JPG and BMP files); simple animation; basic control programming (buttons, labels, scroll bars, and track bars); exploring Bezier curves and splines; menus (basic and custom); graphics paths and regions; clipping techniques; basic dialog box programming (modal and modeless forms); edit, list, and spin controls; font transforms and special effects, using toolbars and status bars, printing techniques (including print dialogs), splitter, TreeView, and ListView controls; programming with the clipboard, drag-and-drop support, reference sections on APIs for programming with files and streams, math functions, and strings. ... Read more Reviews (68)
Isbn: 0735613702 |
$37.79 |
| 1-4 of 4 1 |
| Books - Computers & Internet - Computer Science - Look no further: best VS.NET/C# books (images) |
| Images - 1-4 of 4 1 |
|
| Images - 1-4 of 4 1 |