.NET news » C# C# Rss Feed

Murach's ASP.NET 3.5 Web Programming with VB 2008
Author: Anne Boehm
Average rating: 4.0 / 17
(17 reviews)
More .NET C# books
download

Throwing Exceptions in C#

The thirty-fifth part of the C# Fundamentals tutorial completes an investigation of exception handling. In this article we will consider the throwing of exceptions to report error conditions. This includes the use of standard and custom exception types.
10 Apr 2007, 00:00:07   Source: Throwing Exceptions in C#   Tags: C#

Coding standards for C#

Comprehensive and essential facts which we developers sometimes neglect in C#
7 Apr 2007, 15:27:00   Source: Coding standards for C#   Tags: C#

C# Exception Handling

The thirty-fourth part of the C# Fundamentals tutorial begins a review of exception handling. When an unexpected event occurs, unhandled exceptions cause a program to exit abnormally. Correct handling permits the graceful recovery from an error condition.
30 Mar 2007, 00:00:03   Source: C# Exception Handling   Tags: C#

Speed Test: Switch vs If-Else-If

The .NET framework and the C# language provide two methods for conditional processing where multiple discrete values can be selected from. The switch statement is less flexible than the if-else-if ladder but is generally considered to be more efficient.
24 Mar 2007, 00:00:03   Source: Speed Test: Switch vs If-Else-If   Tags: Performance C#

Lambda Expressions and Expression Trees: An Introduction

Introduces C# 3's lambda expressions and expression trees in an easy-to-understand way, and describes their benefits and uses. Also touches on anonymous delegates.
14 Mar 2007, 17:58:00   Source: Lambda Expressions and Expression Trees: An Introduction   Tags: C#

.Net Expression Evaluator using DynamicMethod

Evaluating Dynamic expressions by compiling C# code to IL, then creating a DynamicMethod from the IL.
13 Mar 2007, 16:06:00   Source: .Net Expression Evaluator using DynamicMethod   Tags: C#

An Easy to Use Weak Referenced Event Handler Factory for .NET 2.0

An article on creating weak event handlers that show how to use them in a Windows Form.
9 Mar 2007, 12:15:00   Source: An Easy to Use Weak Referenced Event Handler Factory for...   Tags: C#

Concepts behind the C# 3.0 language

In this article, I'll describe the concepts that influenced the design of C# 3.0. Most of these concepts are from other programming languages like Haskell, LISP, or languages developed at Microsoft Research.
3 Mar 2007, 09:52:00   Source: Concepts behind the C# 3.0 language   Tags: C#

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#