Narrow your search

Library

Odisee (16)

KU Leuven (15)

Thomas More Kempen (15)

Thomas More Mechelen (15)

UCLL (15)

ULiège (15)

VIVES (15)

AP (14)

KDG (14)

ULB (14)

More...

Resource type

book (30)

digital (14)


Language

English (44)


Year
From To Submit

2022 (3)

2021 (3)

2020 (3)

2017 (2)

2015 (2)

More...
Listing 1 - 10 of 44 << page
of 5
>>
Sort by
Pro C# 2005 and the .NET 2.0 Platform
Author:
ISBN: 1280701412 9786610701414 143020060X 1590594193 Year: 2005 Publisher: Berkeley, CA : Apress : Imprint: Apress,

Loading...
Export citation

Choose an application

Bookmark

Abstract

C# 2005 changed the .NET 2.0 landscape. To name just a few improvements, C# now supports generics, partial types and nullable types when youre coding. And the framework boasts improved speed, data access, security, and scalability. This book has been written to help you assimilate all this new information and realize its potential to make your coding life easier. It will keep you ahead of the curve. To make it easy for you to access this information, the book has been loosely grouped into five sections: 1. Introducing C# 2005 and the .NET 2.0 Platform explains the mechanics of .NET programming and the philosophy that lies behind it 2. The C# Programming Language outlines everything you need to know to start using C# 2005 quickly and efficiently. Object lifetimes, exception handling, genericsits all here 3. Programming with .NET Assemblies deals with one of the most important aspects of .NET programming: reusing code. This book shows you how to capture your code in reuseable external assemblies that you can call upon throughout your applications 4. Programming with the .NET Libraries guides you through them. Of course youre not expected to write every function yourself. The .NET Framework provides a vast array of .NET Libraries containing functionality that allows you to do everything from opening a file-stream to rendering graphical data to the screen 5. Web Applications and XML Web Services concludes the book by taking you away from console-based C# applications and investigating the myriad possibilities that become available when you blend C# 2005 with ASP.NET 2.0 to launch your applications onto the Internet.

Pro VB 2005 and the .NET 2.0 Platform
Author:
ISBN: 1280701552 9786610701551 1430201606 1590595785 Year: 2006 Publisher: Berkeley, CA : Apress : Imprint: Apress,

Loading...
Export citation

Choose an application

Bookmark

Abstract

With the release of .NET 2.0, the Visual Basic 2005 language has been updated with numerous new programming constructs (XML code documentation, operator overloading, generics, and partial types just to name a few!). Now more than ever, choosing a .NET language boils down to personal preference (rather than a languages feature set). However, to effectively make use of these language features, developers must have a rock-solid grounding in object-oriented technology, assemblies, and the core .NET technologies. The purpose of Pro VB 2005 and the .NET 2.0 Platform, Second Edition is to provide you with such a foundation by diving deep into the language of Visual Basic 2005 and the platform of .NET. Thus, rather than simply showing how a code wizard can generate all the code on your behalf, this text will first show you how to author the code yourself so you can alter the generated code to your liking. Beyond learning all the details of the VB 2005 programming language, you will also dive into the details of building desktop applications (using Windows Forms) and websites (via ASP.NET 2.0), and how to interact with relational databases (à la ADO.NET). Furthermore, you will explore how to build distributed applications using the .NET remoting layer and XML web services. Rest assured, this text will expose you to all the major services of the .NET platform and put you in the perfect position for further exploration.

Pro C# with .NET 3.0, Special Edition
Author:
ISBN: 1280852887 9786610852888 1430202017 1590598237 Year: 2007 Publisher: Berkeley, CA : Apress : Imprint: Apress,

Loading...
Export citation

Choose an application

Bookmark

Abstract

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.

Pro VB 2008 and the .NET 3.5 Platform
Author:
ISBN: 1281756490 9786611756499 1430202009 1590598229 Year: 2008 Publisher: Berkeley, CA : Apress : Imprint: Apress,

Loading...
Export citation

Choose an application

Bookmark

Abstract

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 “disposal” 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.

Pro C# 2008 and the .NET 3.5 Platform
Author:
ISBN: 1281220248 9786611220242 1430204222 1590598849 9781590598849 Year: 2007 Publisher: Berkeley, CA : Apress : Imprint: Apress,

Loading...
Export citation

Choose an application

Bookmark

Abstract

The first edition of this book was released at the 2001 Tech Ed conference in Atlanta, Georgia. Since that time, this text has been revised, tweaked, and enhanced to account for the changes found within each release of the .NET platform (1.1, 2.0, 3.0 and now 3.5). .NET 3.0 was more of an augmentative release, essentially providing three new APIs: Windows Presentation Foundation (WPF), Windows Communication Foundation (WCF) and Windows Workflow Foundation (WF). As you would expect, coverage of the "W's" has been expanded a great deal in this version of the book from the previous Special Edition text. Unlike .NET 3.0, .NET 3.5 provides dozens of C# language features and .NET APIs. This edition of the book will walk you through all of this material using the same readable approach as was found in previous editions. Rest assured, you'll find detailed coverage of Language Integrated Query (LINQ), the C# 2008 language changes (automatic properties, extension methods, anonymous types, etc.) and the numerous bells and whistles of Visual Studio 2008.


Book
Pro Expression Blend 4
Author:
ISBN: 143023377X 1430233788 Year: 2011 Publisher: Berkeley, CA : Apress : Imprint: Apress,

Loading...
Export citation

Choose an application

Bookmark

Abstract

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.


Book
Pro C# 5.0 and the .NET 4.5 Framework
Author:
ISBN: 1430242337 1430242345 Year: 2012 Publisher: Berkeley, CA : Apress : Imprint: Apress,

Loading...
Export citation

Choose an application

Bookmark

Abstract

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.


Book
Pro C# 2010 and the .NET 4 Platform
Author:
ISBN: 1430225491 9786612926075 1282926071 1430225505 Year: 2010 Publisher: Berkeley, CA : Apress : Imprint: Apress,

Loading...
Export citation

Choose an application

Bookmark

Abstract

The first edition of this book was released at the 2001 Tech-Ed conference in Atlanta, Georgia. At that time, the .NET platform was still a beta product, and in many ways, so was this book. This is not to say that the early editions of this text did not have merit—after all, the book was a 2002 Jolt Award finalist and it won the 2003 Referenceware Excellence Award. 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. This new edition has been comprehensively revised and rewritten to make it accurately reflect the C# 4 language specification for the .NET 4 platform. You’ll find new chapters covering the important concepts of dynamic lookups, named and optional arguments, Parallel LINQ (PLINQ), improved COM interop, and variance for generics. If you’re checking out this book for the first time, do understand that it's targeted at experienced software professionals and/or graduate students of computer science (so don't expect three chapters on iteration or decision constructs!). 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.

C# and the .NET platform
Author:
ISBN: 9781893115590 1893115593 Year: 2001 Publisher: Berkeley: Apress,

Loading...
Export citation

Choose an application

Bookmark

Abstract


Digital
Pro C# 2005 and the .NET 2.0 Platform
Author:
ISBN: 9781430200604 Year: 2005 Publisher: Berkeley, CA Apress, Inc

Loading...
Export citation

Choose an application

Bookmark

Abstract

Listing 1 - 10 of 44 << page
of 5
>>
Sort by