Cart
Free Shipping in Australia
Proud to be B-Corp

Professional C# 2008 Christian Nagel

Professional C# 2008 By Christian Nagel

Professional C# 2008 by Christian Nagel


$54.99
Condition - Very Good
Only 1 left

Summary

Professional C# 2008 Updated for. NET 3. 5 and Visual Studio? 2008, this book is the ultimate guide to C# 2008 and its environment. Beginning with a look into the architecture and methodology of. NET, the team of superlative authors explains why the C# language cannot be viewed in isolation, but rather, must be considered in parallel with the.

Professional C# 2008 Summary

Professional C# 2008 by Christian Nagel

Professional C# 2008 starts by reviewing the overall architecture of .NET in Chapter 1 in order to give you the background you need to be able to write managed code. After that the book is divided into a number of sections that cover both the C# language and its application in a variety of areas. Part I: The C# Language gives a good grounding in the C# language itself. This section doesn't presume knowledge of any particular language, although it does assume you are an experienced programmer. You start by looking at C#'s basic syntax and data types, and then explore the object-oriented features of C# before moving on to look at more advanced C# programming topics. Part II: Visual Studio looks at the main IDE utilized by C# developers world-wide: Visual Studio 2005. The two chapters in this section look at the best way to use the tool to build applications based upon either the .NET Framework 2.0 or 3.0. In addition to this, this section also focuses on the deployment of your projects. Part III: Base Class Libraries looks at the principles of programming in the .NET environment. In particular, you look at security, threading localization, transactions, how to build Windows services, and how to generate your own libraries as assemblies. Part IV: Data looks at accessing databases with ADO.NET and LINQ, and at interacting with directories and files. This part also extensively covers support in .NET for XML and on the Windows operating system side, and the .NET features of SQL Server 2008. Within the large space of LINQ, particular focus is put on LINQ to SQL and LINQ to XML. Part V: Presentation focuses on building classic Windows applications, which are called Windows Forms in .NET. Windows Forms are the thick-client version of applications, and using .NET to build these types of applications is a quick and easy way of accomplishing this task. In addition to looking at Windows Forms, you take a look at GDI+, which is the technology you will use for building applications that include advanced graphics. This section also covers writing components that will run on Web sites, serving up Web pages. This covers the tremendous number of new features that ASP.NET 3.5 provides. Finally, this section also shows how to build applications based upon the Windows Presentation Foundation and VSTO. Part VI: Communication covers Web services for platform-independent communication, .NET Remoting for communication between .NET clients and servers, Enterprise Services for the services in the background, and DCOM communication. With Message Queuing asynchronous, disconnected communication is shown. This section also looks at utilizing the Windows Communication Foundation and the Windows Workflow Foundation. Part VII: Appendices (Online): This section includes three appendices focused on how to build applications that take into account the new features and barriers found in Windows Vista. Also, this section looks at the upcoming ADO.NET Entities technology and how to use this new technology in your C# applications. You can find these three appendices online at www.wrox.com . Note: CD-ROM/DVD and other supplementary materials are not included as part of eBook file.

About Christian Nagel

Christian Nagel of thinktecture is a software architect and developer who offers training and consulting on how to design and develop Microsoft .NET solutions. He looks back on more than 20 years of software development experience. Christian started his computing career with PDP 11 and VAX/VMS platforms, covering a variety of languages and platforms. Since the year 2000, when .NET was just a technology preview, he has been working with various .NET technologies to build numerous .NET solutions. With his profound knowledge of Microsoft technologies, he has written numerous .NET books, and is certified as a Microsoft Certified Trainer and Professional Developer for ASP.NET. Christian speaks at international conferences such as TechEd and Tech Days, and supports .NET user groups with INETA Europe. You can contact Christian via his Web sites, www.christiannagel.com and www.thinktecture.com . Bill Evjen, Microsoft MVP is an active proponent of .NET Technologies and community - based learning initiatives for .NET. He has been actively involved with .NET since the first bits were released in 2000. In the same year, Bill founded the St. Louis .NET User Group ( www.stlnet.org ), one of the world ' s first such groups. Bill is also the founder and former executive director of the International .NET Association ( www.ineta.org ), which represents more than 450,000 members worldwide. Based in St. Louis, Missouri, Bill is an acclaimed author (more than 15 books to date) and speaker on ASP.NET and SML Web services. In addition to writing and speaking at conferences such as DevConnections, VSLive, and TechEd, Bill works closely with Microsoft as a Microsoft regional director. Bill is the technical architect for Lipper ( www.lipperweb.com ), a wholly owned subsidiary of Reuters, the international news and financial services company. He graduated from Western Washington University in Bellingham, Washington with a Russian language degree. When he isn ' t tinkering on the computer, he can usually be found at his summer house in Toivakka, Finland. You can reach Bill at [email protected]. Morgan Skinner began his computing career at a young age on the Sinclair ZX80 at school, where he was underwhelmed by some code a teacher had written and so began programming in assembly language. Since then he ' s used all sorts of languages and platforms, including VAX Macro Assembler, Pascal, Modula2, Smalltalk, X86 assembly language, PowerBuilder, C/C++, VB, and currently C# (of course). He ' s been programming in .NET since the PDC release in 2000, and liked it so much he joined Microsoft in 2001. He now works in premier support for developers and spends most of his time assisting customers with C#. You can reach Morgan at www.morganskinner.com. Jay Glynn started writing software nearly 20 years ago, writing applications for the PICK operating system using PICK basic. Since then, he has created software using Paradox PAL and Object PAL, Delphi, VBA, Visual Basic, C, C++, Java, and of course, C#. He is currently a project coordinator and architect for a large financial services company in Nashville, Tennessee, working on software for the TabletPC platform. You can contact Jay at [email protected]. Karli Watson is a freelance author and a technical consultant of 3form Ltd ( www.3form.net ) and Boost .net, and an associate technologist at Content Master ( www.contentmaster.com ). He started out with the intention of becoming a world - famous nanotechnologist, so perhaps one day you might recognize his name as he receives a Nobel Prize. For now, though, Karli ' s main academic interest is the .NET Framework, and all the boxes of tricks it contains. A snowboarding enthusiast, Karli also loves cooking, spends far too much time playing Anarchy Online and EVE, and wishes he had a cat. As yet, nobody has seen fit to publish Karli ' s first novel, but the rejection letters make an attractive pile. If he ever puts anything up there, you can visit Karli online at http://www.karliwatson.com.

Table of Contents

Acknowledgments. Introduction. Part I: The C# Language. Chapter 1: .NET Architecture. Chapter 2: C# Basics. Chapter 3: Objects and Types. Chapter 4: Inheritance. Chapter 5: Arrays. Chapter 6: Operators and Casts. Chapter 7: Delegates and Events. Chapter 8: Strings and Regular Expressions. Chapter 9: Generics. Chapter 10: Collections. Chapter 11: Language Integrated Query. Chapter 12: Memory Management and Pointers. Chapter 13: Reflection. Chapter 14: Errors and Exceptions. Part II: Visual Studio. Chapter 15: Visual Studio 2008. Chapter 16: Deployment. Part III: Base Class Libraries. Chapter 17: Assemblies. Chapter 18: Tracing and Events. Chapter 19: Threading and Synchronization. Chapter 20: Security. Chapter 21: Localization. Chapter 22: Transactions. Chapter 23: Windows Services. Chapter 24: Interoperability. Part IV: Data. Chapter 25: Manipulating Files and the Registry. Chapter 26: Data Access. Chapter 27: LINQ to SQL. Chapter 28: Manipulating XML. Chapter 29: LINQ to XML. Chapter 30:.NET Programming with SQLServer. Part V: Presentation. Chapter 31: Windows Forms. Chapter 32: Data Binding. Chapter 33: Graphics with GDI+. Chapter 34: Windows Presentation Foundation. Chapter 35: Advanced WPF. Chapter 36: Add-Ins. Chapter 37: ASP.NET Pages. Chapter 38: ASP.NET Development. Chapter 39: ASP.NET AJAX. Chapter 40: Visual Studio Tools for Office. Part VI: Communication. Chapter 41: Accessing the Internet. Chapter 42: Windows Communication Foundation. Chapter 43: Windows Workflow Foundation. Chapter 44: Enterprise Services. Chapter 45: Message Queuing. Chapter 46: Directory Services. Chapter 47: Peer-to-Peer Networking. Chapter 48: Syndication. Part VII: Appendices. Appendix A: ADO.NET Entity Framework. Appendix B: C#, Visual Basic, and C++/CLI. Appendix C: Windows Vista and Windows Server 2008. Index.

Additional information

GOR003606396
9780470191378
0470191376
Professional C# 2008 by Christian Nagel
Used - Very Good
Paperback
John Wiley & Sons Inc
20080301
1848
N/A
Book picture is for illustrative purposes only, actual binding, cover or edition may vary.
This is a used book - there is no escaping the fact it has been read by someone else and it will show signs of wear and previous use. Overall we expect it to be in very good condition, but if you are not entirely satisfied please get in touch with us

Customer Reviews - Professional C# 2008