Showing posts with label visual studio 2008. Show all posts
Showing posts with label visual studio 2008. Show all posts

Illustrated C# 2008 (Expert's Voice in .NET) Review

Illustrated C# 2008 (Expert's Voice in .NET)
Average Reviews:

(More customer reviews)
Are you looking to buy Illustrated C# 2008 (Expert's Voice in .NET)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Illustrated C# 2008 (Expert's Voice in .NET). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Illustrated C# 2008 (Expert's Voice in .NET) ReviewThis book is for programmers not individuals new to programming. This book covers C# 2008 pretty well in terms of explaining C# constructs such as how to write a class and explaining all the nuances of it. However, very little to no explanation is given for why you would want to use whatever the author is explaining--the big picture is pretty much missing. This book will work best for someone that already has a basic understanding of the .NET framework and programming and just wants to get up-to-date on C# 2008.

So, why should you read this book?
1) There is a plethora of examples and they all work. I don't think I have ever seen more sample code.
2) This is a deeply object oriented approach to C#, as it should be.
3) You are a programmer and want to get up-to-date on C# 2008--you are not looking to learn how to program.
4) The functional explanations of C# constructs are clear and complete. Hey, the guy has a degree in English and it shows.
5) The book is not terribly long. You will be able to finish it in a reasonable amount of time (726 pages).
6) I found many illustrations useful even though a few seemed redundant.
7) The author's treatment of LINQ was done very well and clearly.
8) Once having read the book and worked the examples you will have solid C# 2008 skills and be ready to extend your knowledge with other books and training materials.
9) It is fun and mostly easy to read.
Okay then what's not to like?
1) My biggest criticism is for the most part there is no discussion of how or why you would apply a particular C# construct being taught. For example, if you were learning to use an auto mechanic's tools you would learn how to use a box wrench, an open end wrench and an adjustable wrench but no idea of why you would choose one wrench over another for a particular task.
2) Inner Exceptions were not covered in the chapter on exceptions.
3) While almost all explanations of C# constructs were done well I felt events in Chapter 16 needed to be reworked--it just wasn't that clear.
4) No treatment of ADO.NET
5) No treatment of XML
Illustrated C# 2008 (Expert's Voice in .NET) OverviewC# is the most influential language on the .NET platform. As Microsoft's preferred language it has established a solid user base over recent versions and is drawing in developers from older technologies at an ever increasing rate.This book caters to that migrating audience. Developers already familiar with the basic concepts of a programming language (any programming language) often find the traditional compendium-based ‘beginner's guides' heavy and difficult to read as they spend a lot of time explaining concepts the reader already understands from their previous technology.Illustrated C# is an antidote to this. It packs the essentials of the C# language into just 600 pages, using an array of visual styles to provide a clear, fast, reference to the core of the technology. It's a book migrating developers can read in a day and grasp enough of the language to find their feet and move confidently onto the .NET platform.

Want to learn more information about Illustrated C# 2008 (Expert's Voice in .NET)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Sams Teach Yourself Visual C# 2008 in 24 Hours: Complete Starter Kit Review

Sams Teach Yourself Visual C# 2008 in 24 Hours: Complete Starter Kit
Average Reviews:

(More customer reviews)
Are you looking to buy Sams Teach Yourself Visual C# 2008 in 24 Hours: Complete Starter Kit? Here is the right place to find the great deals. we can offer discounts of up to 90% on Sams Teach Yourself Visual C# 2008 in 24 Hours: Complete Starter Kit. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Sams Teach Yourself Visual C# 2008 in 24 Hours: Complete Starter Kit ReviewJames Foxall's guide for new C# programmers really hit the spot, at least for me. I have experience with many languages over the years, but had no call to look at C# until recently (my experience was mainly in midrange and mainframe systems, but did some Java many moons ago) and needed to get up to working pace FAST.
Foxall's book provided clarity of writing with useful code examples. I would recommend using this with other, more comprehensive texts, such as C# in a Nutshell or one of Jesse Liberty's C# guides, but Foxall's is the doco that got me up and running in a few days.
I am unsure how good it would be for someone without any programming experience at all, but that wasn't my concern when purchasing the book. It served my purpose well.Sams Teach Yourself Visual C# 2008 in 24 Hours: Complete Starter Kit Overview

Want to learn more information about Sams Teach Yourself Visual C# 2008 in 24 Hours: Complete Starter Kit?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Beginning C# 3.0: An Introduction to Object Oriented Programming (Wrox Beginning Guides) Review

Beginning C# 3.0: An Introduction to Object Oriented Programming (Wrox Beginning Guides)
Average Reviews:

(More customer reviews)
Are you looking to buy Beginning C# 3.0: An Introduction to Object Oriented Programming (Wrox Beginning Guides)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Beginning C# 3.0: An Introduction to Object Oriented Programming (Wrox Beginning Guides). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Beginning C# 3.0: An Introduction to Object Oriented Programming (Wrox Beginning Guides) ReviewI've read several of Dr. Purdum's books in the past and have always found them informative and enjoyable to read. Beginning C# 3.0, An introduction to Object Oriented Programming (Wrox) is one of his best book yet. As he asks in the introduction, there are dozens of C# texts out there, so why should you pick this one? His answer is that, while most of the other texts were written by extremely capable programmers, few of the authors have never stood in front of several hundred students looking for examples that teach the material yet are easy to understand and remember. Several of the key strengths of this book are the examples and the way Dr. Purdum anticipates the reader's questions.
For example, in covering the OOP concept of encapsulation in Chapter 2, he discusses why programmers hide the data properties of an object inside the object. He states: "You hide them for the same reason that kings used to hide their daughters in the castle tower...to keep other people from messing around with them." Later on, when discussing the difference between public and private access specifiers, he points out that using the public access specifier is like locking the princess in the castle tower and then passing out her room key to all the knights of the realm. I don't know about you, but this is easier for me to remember this than some dry explanation that one often reads on encapsulation.
Another strength is the way he anticipates rough spots for the student. One of the most difficult concepts for beginning programmers is the difference between value types and reference types. Dr. Purdum uses a simple explanation of what a symbol table is to discuss l-values and r-values. He then introduces a concept he developed called Bucket Analogy which uses the symbol table concepts to explain the difference between the two classes of data. Even experienced programmers will appreciate this example and how it truly makes the differences clear. He uses a job interview to explain what objects are as well as cookie cutters to explain instantiation. The book does reflect his 25 years of teaching experience.
The material covered is what you'd expect for an introductory text. He also covers relatively new topics like Generics and LINQ. The database chapter even has a fairly complete DBMS. However, the entire theme is to teach OOP and good coding techniques. For example, he'll write a code example that works but then calls it an example of RDC (Really Dumb Code). He then rewrites the code and explains why it is a better solution, especially when writing for a commercial environment. His objective is to teach you good OOP techniques using C# as the vehicle to learn those techniques. His experience owning a software company for 17 years shows through while doing this.
If you want to get a solid introduction to OOP and C#, choosing this book is one of the best choices you can make.
Beginning C# 3.0: An Introduction to Object Oriented Programming (Wrox Beginning Guides) Overview

Want to learn more information about Beginning C# 3.0: An Introduction to Object Oriented Programming (Wrox Beginning Guides)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

C# Programming: From Problem Analysis to Program Design Review

C# Programming: From Problem Analysis to Program Design
Average Reviews:

(More customer reviews)
Are you looking to buy C# Programming: From Problem Analysis to Program Design? Here is the right place to find the great deals. we can offer discounts of up to 90% on C# Programming: From Problem Analysis to Program Design. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

C# Programming: From Problem Analysis to Program Design ReviewI am surprised to see the few people here that are raving about this book. This is not my first programming class, but this is one of the worst textbook we have had to use. I don't just base this on my experience but it has actually been a topic of conversation within our discussion boards. The college is using this book as our textbook for an online class. The problem with the book is the author appears to talk in circles. I would prefer a more direct approach of this is and that is and this is why this does that, period, then some examples. But the author goes on, starts to cover information then says it will be in a chapter in the future? I also have the power point presentations that are a real hit and miss with the data. Not all the data in logically covered in the presentations from the book, I have found large portions completely not included in the presentations.
Personally I have ordered another book to help enlighten me from the circles this author has left me in. I have found better explanations at Microsoft direct than this book.C# Programming: From Problem Analysis to Program Design Overview

Want to learn more information about C# Programming: From Problem Analysis to Program Design?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Introducing Visual C# 2010 (Expert's Voice in .NET) Review

Introducing Visual C# 2010 (Expert's Voice in .NET)
Average Reviews:

(More customer reviews)
Are you looking to buy Introducing Visual C# 2010 (Expert's Voice in .NET)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Introducing Visual C# 2010 (Expert's Voice in .NET). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Introducing Visual C# 2010 (Expert's Voice in .NET) ReviewOn page 3 the target audience of this book is described by the author as: "This book was written for programmers who have no experience with C# and/or little to no experience with object oriented programming". If this was truly the targeted group, then Mr. Freeman missed the mark. The title of Introducing Visual C# 2010 should have been Visual C#: A refresher + .NET 4.0 Features. The author's knowledge of the subject matter is very deep and his love of the C# language shines through in most chapters. As a reference material or a refresher of the nuances and intricacies of the C# language this book is excellent. For a programmer, who is new to the object oriented model of .NET and C# the book is poorly organized. Chapter 3 lightly skims over the .Net Framework. Chapter 4: "C# Fundamentals and Keyword Reference" is a mix of weak introduction material and a listing of keywords where some of the keywords are given a cursory explanation but the most annoying is the constant reference to future chapters where more detailed discussion can be found (I thought that is what the Table of Contents is for). One will also discover that upon reviewing those "future" chapters, the depth of discussion is shallow and it is irritating when the author references back to chapter 4 as the source of the original introduction of the particular keyword or concept in question. Chapter 5 provides the definition for Numeric and Boolean Types and it is strange that the discussion of the String and Character types are not encountered until Chapter 16. The material in-between is a fairly comprehensive tutorial on the most important components of C# but beginner C# programmers will often scratch their heads trying to understand the new concepts with not very clear and simple examples. Their confusion will be compounded upon reaching Chapter 17, Attributes. The .NET platform provides automatic memory management, known as Garbage Collection. The author makes it clear that in most cases one need not be concerned about how this component works but then proceeds to explain how the Destructor works without giving a clear explanation of when to use it. The beginner C# programmer will be left wondering when told that "Some objects need to perform actions before they can be safely destroyed; the most common examples are where connections to databases and other servers need to be explicitly closed. The actions you take will depend on your object, but whatever you need to do can be included in a destructor". After reading the above statement, the beginner reader will be left wondering what he has just read. The chapters covering the various aspects of Linq are by far the best and Mr. Freeman is second to none when it comes to this subject. As a refresher for one who had already some exposure to Linq, these chapters are excellent but for a beginner C# programmer they will provide additional frustration. In summary, if you are a beginner C# programmer with little or no understanding of the object oriented model then this book is not for you. Mr. Freeman attempted to put down in this book, his wealth of knowledge of the C# language along with the .NET platform but he did not present it for a beginner. I suggest you buy one of the simpler introductory books and then come back to this one and I am sure you will agree with me then that this book is an excellent refresher and reference source. I give it 5 stars as a reference source but only 2 as a beginners' aid.Introducing Visual C# 2010 (Expert's Voice in .NET) Overview

Want to learn more information about Introducing Visual C# 2010 (Expert's Voice in .NET)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Head First C#, 2E: A Learner's Guide to Real-World Programming with Visual C# and .NET (Head First Guides) Review

Head First C#, 2E: A Learner's Guide to Real-World Programming with Visual C# and .NET (Head First Guides)
Average Reviews:

(More customer reviews)
Are you looking to buy Head First C#, 2E: A Learner's Guide to Real-World Programming with Visual C# and .NET (Head First Guides)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Head First C#, 2E: A Learner's Guide to Real-World Programming with Visual C# and .NET (Head First Guides). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Head First C#, 2E: A Learner's Guide to Real-World Programming with Visual C# and .NET (Head First Guides) ReviewHead First C# was my first experience with the Head First series, although I have since also purchased the excellent Head First Design Patterns (Head First).
This book is designed to teach you C# from the beginning. Technical books can generally be categorized as either tutorials or reference texts -- and this is absolutely in the tutorial category. It's intended to be read and worked through in order, from start to finish. If you already know C# and are looking for a reference text, look elsewhere. If you're an experienced C++ programmer looking to learn C# but are already very familiar with object oriented programming, consider checking out the excellent and concise Accelerated C# 2008 (Accelerated). If you're an experienced C# programmer and just want to learn the advanced features of C#2 and C#3, you'll again want to look elsewhere, and you couldn't do better than C# in Depth: What you need to master C# 2 and 3.
But if you want to *learn* C# and object-oriented programming, and especially if you have little or no prior programming experience, look no further than this fantastic book. If you're reading reviews of the book, then you probably know two things: it has an unusual style and some quirky humor, and it has a bit more than it's fair share of errors. These two things are true, but there's a lot more about the book that you should know, and that's mostly what I want to talk about in this review. Before I move on, though, let me say two things. First, the conversational style and the humor are sometimes overstated -- this is a book about programming, and it's not a joke a minute or anything. I know that you can't Search Inside here on Amazon to see what the book is like, which I assume is because of the visuals-heavy design and unusual layout of the text, but just do a quick search for the book's website and you can download a full sample chapter and some other excerpts. Judge for yourself before dismissing an excellent book based on its unusual (but effective!) design. Second, the errata *are* extensive, but they don't get in the way of your learning. This book shines for its well-chosen examples, its focus on your learning (you'll be talked to rather than at), and its great overall structure -- and none of the errata interfere with any of that at all. If the extensive errata lists do bother you, I wrote a small free program that can sort through them for you and filter out the types of errors or page ranges you're not interested in. (You can find the link stickied at the web forum for Head First C#.)
There are also some features of the book that I don't see mentioned often enough, and which I want to comment on briefly before getting to the heart of the review. First, I love that the introduction is actually useful, giving you valuable insights on why the authors made the design choices they did (why text is in the pictures, rather than beneath them as captions, for example), and offering advice on how best to approach the book if you want to maximize your learning experience. I highly recommend reading it. Second, it's worth mentioning the way that the book uses the (free) Visual Studio 2008 IDE to make graphical Windows applications throughout, rather than focusing on a text editor and console applications like many other introductory texts. Visual Studio is a powerful IDE, and it *helps* you learn with syntax highlighting and Intellisense -- I'm very glad that the Head First C# authors chose to incorporate its use into the book, because it often allowed me to focus on concepts at first rather than syntax, picking that up gradually through repeated use with the IDE's guidance. Third, you'll be making some genuinely impressive software over the course of the book -- between the use of Visual Studio and the authors' being unafraid to assign projects that take several pages just to *describe*, you'll get a much better feel for what it's like to make real software than you would from the small "toy" examples that are more common in many other introductory books. (But don't worry, there's plenty of guidance, including fully annotated solution code for most of them, and a helpful web forum if you get stuck.) Finally, the book has the advantage of going to print for the first time after C# 3.0 and .NET 3.5 were released, and it fluently combines the various iterations of the language, teaching C# *as it now exists* from the ground up in an order that makes sense for someone learning now from scratch, rather than taking the more common but less sensible route of introducing C#1.0 features before C#2 before C#3. This is great, because it allows the authors to introduce some of the powerful and convenient features of the newer editions of the language and framework -- the stuff that really makes C# appealing as a language -- quite early in the book.
The funny thing about Head First C# is that the conversational tone, the humor, the quirky layout, and the pictures make the book seem completely un-academic. At first glance, it's as far from an academic textbook as you could possibly get! But I've come to realize that reading through the book from the beginning, doing all the exercises, is as close to the structured learning experience of an academic course as you can get in book form. The brilliance of Head First C# isn't in the phrasing of any given sentence or the coding style in a particular snippet -- it's in the overall structure of the book and especially in the examples chosen for exercises, which allow you to build up your knowledge incrementally while still reviewing past material. (Which is why the errata really aren't a big deal.) I've seen some reviews point out the book's "redundancy" as a flaw, and I just shake my head. The book is often repetitious, but never redundant, and always deliberately -- seeing the same material repeatedly from different perspectives and at different times is absolutely key to learning anything, and the repetition is one of the best features of the Head First series in general and this book in particular.
So there are errors. So there's a bit of fuzziness in the phrasing sometimes. So it doesn't cover Advanced Language Topic A or B. So what? This book is a teaching tool. It's a full course -- instructor, fellow students, textbook, homework, projects, review sessions, and conversations with peers -- stuffed onto paper, rolled up, printed, and stuck between covers.
I've learned C#, and I've *retained* what I've learned. I've had fun doing it. And if you too want to learn C# and programming, I can't recommend Head First C# highly enough.Head First C#, 2E: A Learner's Guide to Real-World Programming with Visual C# and .NET (Head First Guides) Overview

Want to learn more information about Head First C#, 2E: A Learner's Guide to Real-World Programming with Visual C# and .NET (Head First Guides)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Beginning C# Review

Beginning C#
Average Reviews:

(More customer reviews)
Are you looking to buy Beginning C#? Here is the right place to find the great deals. we can offer discounts of up to 90% on Beginning C#. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Beginning C# ReviewYep after months and months of ranting and criticizing that the red book publishers (Wrox) have lost their magic touch, just when we were about to give up on them, they return with an outstanding book, probably one of the best in their Beginning series ever, and coming back in form in such style, this is simply unbelievable - Beginning C# is all I needed.
Working as a developer in ASP for over 3 years now, but never actually having tried my hands in a real hardcore programming language, I bought EACH AND EVERY book on C# being published since the past one year, but couldn't get past the 40th page of any of the books, they were designed for hardcore programmers and for a moment I wondered if Microsoft and other authors were leaving pure ASP programmers down the drain.
Beginning C# is the answer to all the prayers if you've faced the same delima as I have.
First the drawbacks.
Someone at wrox has decided that publishing a book less than 1000pages is a crime.so I guess I can let go of that. This book has 1031 pages.
Having multiple authors at times irritatingly breaks the smooth flow of explanations from chapter to chapter. GDI+ may be understanding enough as a chapter but the manner of explanations and approach to "try it out" examples is suffocating, irritating and makes you want to tear the entire chapter out of the book.
Also some examples are NOT WORKING and THIS CAN GET YOU FRUSTRATED, so be WARNED.
The plus points.
25 chapters, precise to the point, length of each chapter kept under 25 to 30 pages. Basic aim of each chapter is to explain the topic and right away get your hands dirty with examples.Each example explained step by step.
OOP being an integral part of C# comes only on Ch#8 after you have grown sufficiently confident enough to open Visual Studio and write basic programs for Windows/Web.
This according to me is a very intelligent planning of chapters and hence non of the chapters come across as speaking to you in a foriegn language or in a manner of saying that "sorry if you don't understand us , you are an idiot"....
This book can be held at the same high teaching standards set by Beginning ASPDatabases/Beginning ASP/Beginning JavaScript.
The only other book which even comes close to this is C# By Herb Schildt. Which is another exceptionally good book for beginners, though it does not touch the wide range of topics as Beg.C#
With this book Wrox is back in form.
Simply put... An Amazing Achievement....Beginning C# Overview

Want to learn more information about Beginning C#?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

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

Microsoft Visual C# 2005 Step by Step (Step By Step (Microsoft))
Average Reviews:

(More customer reviews)
Are you looking to buy Microsoft Visual C# 2005 Step by Step (Step By Step (Microsoft))? Here is the right place to find the great deals. we can offer discounts of up to 90% on Microsoft Visual C# 2005 Step by Step (Step By Step (Microsoft)). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Microsoft Visual C# 2005 Step by Step (Step By Step (Microsoft)) ReviewThis is an excellent resource for learning C#/.NET. It covers the basics of the language and then eventually heads into more advanced topics such as ADO.NET, ASP.NET, etc. Like with any book, the more you know coming in, the more you can take advantage of it, but I would say that even someone new to programming can get a lot out of this book.
Good Stuff:
1) Each topic in parts 1-4 is covered in a step by step fashion with plenty of examples to help you learn by doing.
2) Excellent summary for each chapter highlighting key points in a tabular format including mini code examples. This is by far one of the best way of doing a summary in a programming book I've seen.
3) You can do 99% of the examples with MS Visual C# Express Edition which is free. So you don't need to go out and buy Visual Studio 2005.
4) The books is broken up into 6 parts and this organization is well thought out. Parts 1-4 pretty much cover the language, Part 4 covers how to use Windows Forms with C#, Part 5 covers how to use ADO.NET with C# and finally Part 6 covers ASP.net.
5) Good topic coverage for a beginner book.
Stuff that could have been done better:
1) My primary frustration with this book is the many typographical errors. The errata list is bigger than what I would like to see and it wasn't even exhaustive. I found many errors not on the errata and even though I submitted them, I got no response. Make sure you print out the errata and keep it with u while u read.
2) There is no coverage of how to use C# with XML, nor is there coverage on File I/O, streams etc. It would have been good to have chapters on these topics. I think they're more important that covering ASP.NET.
3) Part 5 (ADO.NET) is not that good. The way that ADO.NET is explained is not as step by step as the previous 4 parts. The order in which things are done does not lend well to explaining the concepts. For ex: the first thing the author does is have you run a command line SQL script to modify a pre-existing database. Some more basic parts of ADO.NET such as how to create a database from scratch in Visual Studio are not covered at all. You would think that this is what would be done first. The chapters on ADO.NET could have been written in a much better way, preferably one that assumes little to no prior knowledge of a database. Nonetheless, to have ADO.NET coverage at all in a book at this level is good.
4)Part 6 covers ASP.NET. There are four chapters on this topic which quite qood considering this is not an ASP.NET book. Don't expect to get a good understanding of ASP.NET however, as ASP.NET cannot be understood well in such brevity.
Bottom Line:
I recommend adding this book to your arsenal if you plan on learning C#. It covers the language in adequate detail in a step by step fashion. [...]Microsoft Visual C# 2005 Step by Step (Step By Step (Microsoft)) OverviewVisual C#, a feature of Microsoft Visual Studio 2005, is a modern programming language designed to deliver a productive environment for creating business frameworks and reusable object-oriented components. Now you can teach yourself essential techniques with Visual C#—and start building components and Microsoft Windows-based applications—one step at a time. With STEP BY STEP, you work at your own pace through hands-on, learn-by-doing exercises. Whether you're a beginning programmer or new to this particular language, you'll learn how, when, and why to use specific features of Visual C# 2005. Each chapter puts you to work, building your knowledge of core capabilities and guiding you as create your first C#-based applications for Windows, data management, and the Web.

Want to learn more information about Microsoft Visual C# 2005 Step by Step (Step By Step (Microsoft))?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Microsoft Visual C# 2008 Step by Step Review

Microsoft Visual C# 2008 Step by Step
Average Reviews:

(More customer reviews)
Are you looking to buy Microsoft Visual C# 2008 Step by Step? Here is the right place to find the great deals. we can offer discounts of up to 90% on Microsoft Visual C# 2008 Step by Step. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Microsoft Visual C# 2008 Step by Step ReviewI got this book because I wanted to learn Visual Studio 2008 and C# at the same time. It has certainly done the trick. I am currently at page 449, and I am amazed at how much information John Sharp has put in book. Even more amazing is that his teaching technique of a brief overview, and explaining while doing examples is surprisingly effective. If you are a Pro Developer familiar with C++ or java, then this book is probably not going to teach you anything interesting till part 4. I am very please and recommend to any novice who wants to learn.Microsoft Visual C# 2008 Step by Step OverviewGet the hands-on, step-by-step guide to learning the latest enhancements in Microsoft Visual C# 2008. Visual C#, one of the tools in Microsoft Visual Studio 2008, is a modern programming language designed to deliver a productive environment for creating business frameworks and reusable object-oriented components. Whether you re a beginning programmer or new to the Visual C# programming language, you ll learn how to use the fundamental features of Visual Studio 2008 and gain a basic understanding of the latest enhancement of the Visual C# language. You ll work at your own pace through hands-on, learn-by-doing exercises, get started creating components and working Windows applications, and build your knowledge as you start creating your first Visual C# based applications. You ll also explore how to create data management and Web-based applications. In each chapter, work through learn-by-doing exercises that demonstrate how, when, and why to use the many features of the Visual C# rapid application development environment. Includes a companion CD with code samples, data sets, and a fully searchable eBook.
Features easy-to-follow, logically planned lessons to help you learn at your own pace
Helps you gain a solid understanding of how to use the fundamental features of Visual C# 2008
Includes a companion CD with code samples, data sets, and a fully searchable eBook

Want to learn more information about Microsoft Visual C# 2008 Step by Step?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...