The World’s Leading Microsoft .NET Magazine
   
 
The .NET Addict's Blog

My Top Tags

                                                           

My RSS Feeds








I heart FeedBurner

Latest Diggs - Programming

Computers Blogs - Blog Top Sites

Site Hits

Total: 4,741,459
since: 19 Jan 2005

Latest tagged entries for 'CSHARP'



Implementing the Weak Event Pattern in CLINQ v2.0

Mon 13 Oct 08 10:04 A GMT-05
CLINQ v1.x had an implementation of the weak event pattern, but it was custom and difficult to maintain. CLINQ v2.0 uses the weak event pattern implementations that are available to all .NET developers. I discuss this pattern in this blog post.

Smart, Deep Property Notifications in CLINQ v2.0

Tue 07 Oct 08 8:15 A GMT-05
I haven't said much about CLINQ lately but that's mostly because we've been trying to get v2.0 ready to ship. We're nearly there, so I thought I would start by talking about one of the new features - smart property notifications

Building Model Classes in C# and Cocoa

Sun 15 Jun 08 10:13 A GMT-05
An extremely common thing that everyone has to do is build simple model objects. The problem is, everyone's documentation varies. This post shows C# developers how to build a Cocoa model object in a way they're familiar with

CLINQ v1.1.0.0 Released!

Fri 02 May 08 12:38 P GMT-05
Continuous LINQ, a C# 3.5 extension library that enables standard LINQ queries to remain dynamic and continuous long after the initial query, has been updated to version 1.1 and includes a new demo and lots of new features

CLINQ v1.1.0.0 - New and Improved with Aggregation!

Wed 16 Apr 08 12:27 P GMT-05
I'm just about ready to start upgrading the demo suite to be compatible with some of the new code I'm writing for CLINQ 1.1 and thought I'd post a preview of Continuous Aggregation

C# 2005 Unleashed gets published in Chinese!

Fri 18 Jan 08 8:45 P GMT-05
A book I wrote some time ago, Visual C# 2005 Unleashed, which covers everything from ASP.NET to ADO.NET, has been republished in Chinese!

The dreaded language bleed-over has begun

Tue 19 Jun 07 1:23 P GMT-05
I have started injecting Objective-C syntax into my C# code without thinking about it... a sure sign that I'm hooked.

Orchestrating a WPF App using MVC and Windows Workflow Foundation

Tue 03 Apr 07 9:42 A GMT-05
This blog entry contains a summary of some of my experiences in using state machine workflows to control the flow and logic of a complex WPF application

Purpose-Driven Development Environments vs. Capability-Driven Development Environments

Fri 23 Mar 07 2:29 P GMT-05
Having been a C# developer for more than 6 years, and starting to explore the world of Cocoa programming with Objective-C 2.0, I've discovered a fundamental difference in Developer Experience philosophy.

Authorness

Thu 15 Mar 07 8:44 A GMT-05
Just some musings on having spent the last 6 years of my life writing books about the .NET Framework

WPF/XAML and LINQ - A match made in heaven

Tue 06 Jun 06 6:32 A GMT-05
A few days ago I started toying with the idea of combining the unbelievable in-memory and database query power of LINQ/XLinq/DLinq with the easy binding syntax and powerful, rich GUI of WPF. This blog post is the result

Query Data and Generate an RSS Feed in the same XLinq/DLinq Query!

Sun 21 May 06 3:38 P GMT-05
This blog entry will illustrate some of the immense power of combining DLinq queries with the on-the-fly XML generation ability that comes with XLinq to create an RSS feed in one "line" of code!

Lambda Lambda Lambda

Sat 20 May 06 8:01 P GMT-05
While I admit that Revenge of the Nerds is one of the best movies of all time (right next to Goonies), I am actually referring to Lamba Expressions within C# 3.0 and LINQ. This blog entry goes into detail on Expression Trees and Lambdas

The Adventures of LINQ (Not Zelda)

Fri 19 May 06 6:21 P GMT-05
I played with LINQ a while ago and recently picked it back up when the May CTP came out. I'd forgotten how amazingly cool some of this stuff is. This blog shows a quick example of working with in-memory data using LINQ.

Whatcha gonna do when the WWF runs wild on you, brother!?

Fri 24 Mar 06 10:04 A GMT-05
When Microsoft produces an acronym with as much comedic potential as 'WWF', you know I've got to run with it. This post will take you on a tour through a WWF sample I'm building, including justification for using WWF and code samples.

You got peanut butter in my chocolate! - Hosting XAML Controls in Windows Forms

Tue 07 Mar 06 3:58 P GMT-05
This post will show you how to create a Windows Forms application that is capable of hosting and rendering XAML controls within a Windows Form. Believe it or not, I see this being the 'norm' for most business applications.

3D Data Visualization in WPF Step 2 - Combining Hit Testing with Data Binding

Tue 07 Mar 06 10:21 A GMT-05
In this post I'll walk you through the process of combining the 3D hit testing techniques in the previous post with WPF's data binding syntax to illustrate a compelling immersive 3D data visualization technique.

3D Data Visualization in WPF Step 1 - Hit-Testing in a 3D ViewPort

Mon 06 Mar 06 5:04 P GMT-05
In my previous blog entry, I showed you the code required to spin and move the 3D camera in a 3D scene. In my quest to use a 3D scene for direct manipulation and access to data, the next thing I need to be able to do is click on 3D meshes.