.NET news » C# C# Rss Feed

download
C# Program Flow Control: The Foreach Loop
The thirtieth part of the C# Fundamentals tutorial continues the multi-part examination of the program flow control commands available to the C# developer. This article examines the foreach loop structure that cycles through each item in a collection.
20 Feb 2007, 00:00:04   Source: C# Program Flow Control: The Foreach Loop   Tags: C#
How to use the Settings class in C#
A simple way to learn and start using the C# Settings class
15 Feb 2007, 13:54:00   Source: How to use the Settings class in C#   Tags: C#
Pinned Object
This article describes a very short helper class to work with unmanaged memory that must be pinned to prevent the garbage collector from moving it. This is a particular requirement when working with the Win32 API's asynchronous I/O methods, which I found myself doing when implementing a USB device interface.
11 Feb 2007, 19:03:00   Source: Pinned Object   Tags: C#
Optimizing integer divisions with Multiply Shift in C#
An article on improving the performance of an algorithm by replacing integer divisions
2 Feb 2007, 20:55:00   Source: Optimizing integer divisions with Multiply Shift in C#   Tags: C# Performance
C# Program Flow Control: The For Loop
The twenty-ninth part of the C# Fundamentals tutorial starts a multi-part examination of the program flow control commands available to the C# developer. This first article examines the for loop structure that allow the repeated execution of code.
27 Jan 2007, 00:00:04   Source: C# Program Flow Control: The For Loop   Tags: C#
C# DateTime Manipulation
The twenty-seventh part of the C# Fundamentals tutorial completes the examination of the DateTime data type provided by C# and the .NET Framework. This article considers manipulation of DateTime data and formatting date and time information as a string.
20 Jan 2007, 05:40:26   Source: C# DateTime Manipulation   Tags: C#
C# DateTime Information Extraction
The twenty-sixth part of the C# Fundamentals tutorial continues the examination of the DateTime data type provided by C# and the .NET Framework. In this instalment we will consider how information can be compared and extracted from values of this type.
20 Jan 2007, 05:40:26   Source: C# DateTime Information Extraction   Tags: C#
C# String Comparison Functions
The twenty-third part of the C# Fundamentals tutorial continues the examination of the string manipulation functionality provided by the String class. This article investigates methods available for comparing the contents of strings.
20 Jan 2007, 05:40:26   Source: C# String Comparison Functions   Tags: C#
C# 3.0: An Introduction
In this article we will look at some of the language enhancements in C# 3.0. Throughout the article we will use code examples to demonstrate these new enhancements and how to apply them to real world problems. This article will give you the core understanding you will require to further explore the C# 3.0 language using many of its new features.
19 Jan 2007, 11:23:55   Source: C# 3.0: An Introduction   Tags: C#
Some Useful Concurrency Classes and A Small Testbench
Useful concurrency classes and small test bench in C#
15 Jan 2007, 18:20:00   Source: Some Useful Concurrency Classes and A Small Testbench   Tags: C# Performance