The Wayback Machine - https://web.archive.org/web/20130510214212/http://www.codeguru.com:80/csharp/.net

Latest .NET Articles

Zip and Unzip Files Programmatically in C#

The .NET framework 4.5 introduces some new classes in System.IO.Compression namespace that allows you to deal with Zip files programmatically. Using these classes you can create new Zip files, open and modify existing Zip files and extract the contents of Zip files via code. This article examines some of these classes.

Using Preprocessor Directives in C#

Bipin Joshi shows you how to use C# preprocessor directives to instruct the C# compiler to alter the compilation process in some way. For example you may instruct the C# compiler that a particular block of code be excluded from the compilation process.

Working with Promises in Windows Store Apps

To deal with the complexity involved in asynchronous programming, Windows Store apps make use of what is known as a Promise. At code level a promise is an object that represents the result of an asynchronous operation and returns a value at some future point in time. This article discusses what Promises are and also shows how to use them in a Windows Store app.

Using SimpleMembership in ASP.NET MVC 4

SimpleMembership extends the ASP.NET core membership and role providers in such a way that you can use a custom database table to store user information. Bipin Joshi gives you step by step instructions to configure and use the SimpleMembership in ASP.NET MVC projects.

Latest Developer Videos

More...

Latest CodeGuru Developer Columns

MFC Integration with the Windows Transactional File System (TxF)

The Transactional File System (TxF), which allows access to an NTFS file system to be conducted in a transacted manner through extensions to the Windows SDK API. MFC 10, has been extended to support TxF and related technologies. This support allows existing MFC applications to be easily extended to support kernel transactions.

.NET Framework: Collections and Generics

The original release of the .NET Framework included collections as .NET was introduced to the Microsoft programming world. The .NET Framework 2.0 introduced generics to complement the System.Collections namespace and provide a more efficient and well performing option. Read on to learn more...

SOLID Principles in C# - An Overview

SOLID principles form the base for writing good and clean object oriented code in C#. Learn about the S.O.L.I.D principles and explore C# coding samples for each.

Go Deeper

Most Popular Programming Stories

More for Developers

Latest Developer Headlines

RSS Feeds