Markedets billigste bøger
Levering: 1 - 2 hverdage

Bøger af Andrew Troelsen

Filter
Filter
Sorter efterSorter Populære
  • - Foundational Principles and Practices in Programming
    af Andrew Troelsen & Phillip Japikse
    439,95 kr.

    Intermediate-Advanced user level

  • - Foundational Principles and Practices in Programming
    af Andrew Troelsen & Phil Japikse
    588,95 kr.

    Intermediate user level

  • af Andrew Troelsen
    550,95 kr.

    Welcome to the most comprehensive foundational guide available on the topic of C# coding and .NET. This book goes beyond "e;do this, to achieve this"e; to drill down into the core stuff that makes a good developer, great. This expanded 11th edition delivers loads of new content on Entity Framework, Razor Pages, Web APIs and more. You will find the latest C# 10 and .NET 6 features served up with plenty of "e;behind the curtain"e; discussion designed to expand developers' critical thinking skills when it comes to their craft. Coverage of ASP.NET Core, Entity Framework Core, and more sits alongside the latest updates to the new unified .NET platform, from performance improvements to Windows Desktop apps on .NET 6, updates in XAML tooling, and expanded coverage of data files and data handling. Going beyond the latest features in C# 10, all code samples are rewritten for this latest release.Dive in and discover why this essential classic is a favorite of C# developers worldwide. Gain a solid foundation in object-oriented development techniques, attributes and reflection, generics and collections, and numerous advanced topics not found in other texts (such as CIL opcodes and emitting dynamic assemblies). Pro C# 10 with .NET 6 will build your coding confidence putting C# into practice, and exploring the .NET universe and its vast potential on your own terms.What You Will LearnExplore C# 10 features and updates in records and record structs, global and implicit using directives, file level namespaces, extended property patterns, and moreDevelop applications with C# and modern frameworks for services, web, and smart client applicationsHit the ground running with ASP.NET Core web applications using MVC and Razor Pages, including view components, custom tag helpers, custom validation, GDPR support, and areasBuild ASP.NET RESTful services complete with versioning, enhanced swagger, and basic authenticationEmbrace Entity Framework Core for building real-world, data-centric applications, with deeply expanded coverage new to this edition including SQL Server temporal table supportDive into Windows Desktop Apps on .NET 6 using Windows Presentation FoundationUnderstand the philosophy behind .NETDiscover the new features in .NET 6, including single file applications, smaller container images, and moreWho This Book Is ForDevelopers of any level who want to either learn C# and .NET or want to take their skills to the next level."e;Amazing! Provides easy-to-follow explanations and examples. I remember reading the first version of this book; this is a 'must-have' for your collection if you are learning .NET!"e; - Rick McGuire, Senior Application Development Manager, Microsoft"e;Phil is a journeyman programmer who brings years of experience and a passion for teaching to make this fully revised and modernized 'classic' a 'must-have'. Any developer who wants full-spectrum, up-to-date coverage of both the C# language and how to use it with .NET and ASP.NET Core should get this book."e;- Brian A. Randell, Partner, MCW Technologies and Microsoft MVP

  • af Andrew Troelsen
    378,95 kr.

  • af Andrew Troelsen
    482,95 kr.

    The point of this chapter was to demystify the garbage collection process. As you have seen, the garbage collector will only run when it is unable to acquire the necessary memory from the m- aged heap (or when a given AppDomain unloads from memory). When a garbage collection does occur, you can rest assured that Microsoft's collection algorithm has been optimized by the use of object generations, secondary threads for the purpose of object finalization, and a managed heap dedicated to host large objects. This chapter also illustrated how to programmatically interact with the garbage collector using the System. GC class type. As mentioned, the only time when you will really need to do so is when you are building finalizable or disposable class types. Recall that finalizable types are classes that have overridden the virtual System. Object. Finalize() method to clean up unmanaged resources (at some time in the future). Disposable objects, on the other hand, are classes (or structures) that implement the IDisposable interface. Using this technique, you expose a public method to the object user that can be called to perform internal cleanup ASAP. Finally, you learned about an of- cial "e;disposal"e; pattern that blends both approaches. PART 3 Advanced VB Programming Constructs CHAPTER 9 Working with Interface Types This chapter builds on your current understanding of object-oriented development by examining the topic of interface-based programming.

  • af Andrew Troelsen
    512,95 kr.

    C# 2005 has enjoyed huge success in the year since its launch, firmly establishing itself as the premier language for development on Microsofts successful .NET 2.0 platform. With the launch of the .NET 3.0 extensions in early 2007, the horizons of this language are being extended, and it is becoming even more powerful as it is able to leverage the new .NET 3.0 Foundations.In recognition of this, Apress presents Pro C# with .NET 3.0, Special Edition to provide you with a complete A-to-Z reference for using C# with the .NET 2.0 platform and the .NET 3.0 extensions. The book contains new chapters that explore the interactions between the existing framework and the new extensions, giving you an edge when you evaluate and implement .NET 3.0 for the first time. To provide even more support, a bonus PDF download will be available with each purchase, offering over 500 pages of carefully selected additional content to help broaden your understanding of both .NET 2.0 and .NET 3.0.

  • af Andrew Troelsen
    522,95 kr.

    COM and .NET Interoperability provides a complete overview of the process of building .NET applications that interact (interoperate) with existing COM code. Before digging into how to make interoperability practical, Andrew Troelsen gives you a concise overview of the COM and .NET architectures, and provides examples using various COM frameworks (raw C++, ATL, and Visual Basic 6) as well as the core .NET managed languages(C# and Visual Basic .NET). After covering the preliminaries, the book explores numerous issues that arise in interoperability, including interacting with the Win32 API, dynamically generating source code via System.CodeDOM, creating serviced (COM+) components using managed code, manually editing (and recompiling).NET metadata, and the process of constructing custom COM/.NET conversion utilities. Both intermediate and advanced developers will welcome the practical information they need to quickly work with COM and COM+ in .NET applications, and learn how to create .NET components that are COM compatible. About the Author:Andrew Troelsen is a partner and trainer at Intertech-Inc., and a leading authority on both COM and .NET. He first covered traditional COM in the best-selling Developers Workshop to COM and ATL and followed it with his five-star treatment of C# in C# and the .NET Platform (a 2002 Jolt Award Finalist), and of VB .NET in VB .NET and the .NET Platform: An Advanced Guide. He has degrees in Mathematical Linguistics and South Asian Studies from the University of Minnesota. He currently lives in Minneapolis, MN, with his wife, Amanda, and spends his free time investigating .NET and waiting for the Wild to win the Stanley Cup.

  • af Dominic Selly, Andrew Troelsen & Tom Barnaby
    518,95 - 643,95 kr.

    Expert ASP.NET 2.0 Advanced Application Design will help you derive maximum performance and reliability from the distributed applications you create with ASP.NET 2.0.The book first looks at some of the non-functional requirements that impact the design of a distributed application. It then relates them to the servers and services available in the .NET 2.0 Framework. ASP.NET 2.0 is the central process for use in distributed .NET applications, and the book closely examines the ASP.NET 2.0 Framework and its hosting environment, Internet Information Server (IIS). The book looks at how ASP.NET 2.0 is used by different packages within .NET (like Web Services), and explores how it can be extended to meet your own custom requirements.The second part of the book drills down and examines some of the common architectural challenges encountered when developing application designs. The book walks through the tiers of the .NET Framework, starting at the client level and exploring the internals of the page type, enhancements to ViewState, client script generation, and new out-of-band callbacks. At the middle tier, the book examines Web Services, Remoting, COM+, MSMQ, and mix and match communication options to suit your own requirements. This section wraps up by previewing Windows Communication Foundation, which aims to unify these technologies.The third part of the book examines the data layer of your distributed applications. This includes enhancements to the Managed Providers in 2.0, the new transactional model, and a preview of usage guidelines for SQL Server 2005. By the books conclusion, you will be able to select with confidence the most appropriate design elements for your purposes, elegantly connecting them, and ensuring you get the very best from the ASP.NET 2.0 Framework.

  • af Andrew Troelsen
    392,95 kr.

    Pro Expression Blend 4 is for .NET developers and graphical artists who want to learn the ins and outs of the Expression Blend integrated development environment. You may know already that this tool can be used to build Windows Presentation Foundation (WPF), Silverlight, and Windows Phone 7 applications; however, this book will take you well beyond the basics and provide you with a detailed examination of key Blend topics, including workspace customization, graphics, layout, styles, themes, data binding, and the use of SketchFlow, giving you an excellent understanding of the Blend product and what it can do for you. Over the course of these eight chapters, you will learn numerous techniques to simplify the authoring of XAML using Blend. These include:   Transforming a vector graphic into a custom control template with a few clicks of the mouse Generating complex animations using an integrated timeline editor Visually designing interactive data templates Creating prototypes (via SketchFlow) that can be transformed into production-level code     Throughout Pro Expression Blend 4, you'll work with both Blend and .NET code to finalize fully-functional projects that will provide both valuable insights and a sound foundation for your future WPF and Silverlight projects. Each chapter will give you ample opportunity to build .NET software using Blend. However, this is not a programming book, per se. While some examples will require a manageable amount of C# code, this book is squarely focused on helping you gain mastery over the numerous tools, editors, designers, and wizards of the Microsoft Expression Blend IDE.

  • af Andrew Troelsen & Vidya Vrat Agarwal
    444,95 kr.

    In its new edition, this book examines changes introduced by the new .NET 4.0 Framework and VB 2010 programming language, including Parallel LINQ (pLINQ), support for dynamic lookups and improved COM interop. The rest of the content is revised and refreshed.

  • af Andrew Troelsen
    831,95 kr.

    However, over the years that author Andrew Troelsen spent working with the common language runtime (CLR), he gained a much deeper understanding of the .NET platform and the subtleties of the C# programming language, and he feels that this fifth edition of the book is as close to a "final release" as he's come yet.

  • af Andrew Troelsen
    768,95 kr.

    This new edition of Pro C# 5.0 and the .NET 4.5 Platform has been completely revised and rewritten to reflect the latest changes to the C# language specification and new advances in the .NET Framework. You'll find new chapters covering all the important new features that make .NET 4.5 the most comprehensive release yet, including:.NET APIs for Windows 8 style UI apps New asynchronous task-based model for async operations How HTML5 support is being wrapped into C# web applications New programming interfaces for HTTP applications, including improved IPv6 support Expanded WPF, WCF and WF libraries giving C# more power than ever before This comes on top of award winning coverage of core C# features, both old and new, that have made the previous editions of this book so popular (you'll find everything from generics to pLINQ covered here).The mission of this text is to provide you with a rock-solid foundation in the C# programming language and the core aspects of the .NET platform (assemblies, remoting, Windows Forms, Web Forms, ADO.NET, XML web services, etc.). Once you digest the information presented in these 25 chapters, you'll be in a perfect position to apply this knowledge to your specific programming assignments, and you'll be well equipped to explore the .NET universe on your own terms.

Gør som tusindvis af andre bogelskere

Tilmeld dig nyhedsbrevet og få gode tilbud og inspiration til din næste læsning.