Omer van Kloeten's .NET Zen

Programming is life, the rest is mere details

News

Omer van Kloeten's Facebook profile

Get Firefox

.NET Resources

Articles :: CodeDom

Articles :: nGineer

Culture

Projects

Browse by Tags

All Tags » Toys (RSS)
Connect the Dots CAPTCHA
Remember the game Connect the Dots we used to play as kids? It was fun and easy and you could color the pretty bunny after you were done. This gave me an idea - a computer program doesn't know how to play Connect the Dots very well unless it's programmed...
[Updated (1.7)] Commonly Used .NET Coding Patterns in CodeDom
It's been a while, but the latest update (1.7) of my article Commonly Used .NET Coding Patterns in CodeDom is now out. Changes made since 1.6: The Nullable Value Type Property Pattern has been added. The Enum.IsDefined and String.IsNullOrEmpty assertions...
Three Lines About Lambda Expressions
myObject.ITakeACharReturningDelegate(delegate( int i, string s) { return s[i]; }); myObject.ITakeACharReturningDelegate((i, s) => s[i]); Both are the same. That's it, in a nutshell... [ Update : The HTML was malformed in the post. Sorry about that...
Posted: Jul 07 2006, 05:09 PM by Omer van Kloeten | with no comments
Filed under: , ,
[Updated (1.6)] Commonly Used .NET Coding Patterns in CodeDom (now under a CC license)
The latest update (1.6) of my article Commonly Used .NET Coding Patterns in CodeDom is now out. Major changes made since 1.5: The Asynchronous Operation pattern has been added. The Disposable Type pattern has been added. The XML Comment patterns have...
PowerToys for the Visual Studio 2005 Class Designer and Distributed System Designers
Looking for a way of extending the Visual Studio 2005 Class Designer, I found, after half an hour of googling, this post on the MSDN forums, which linked to the workspace of the PowerToys for the Visual Studio 2005 Class Designer and Distributed System...
Posted: Apr 13 2006, 11:00 PM by Omer van Kloeten | with no comments
Filed under:
Copy/Paste References
A feature I find lacking in all versions of Visual Studio is the fact that there's no copy/paste support for references. You simply can't copy a reference from one project to the other. Today I got somewhat fed up with that, so I decided to implement...
CodeDom Reflection Generator
As a step to further promote correct writing of generators using CodeDom, I've created a utility that takes an entire assembly and creates typed methods that create every type in it, invoke every method, reference every member, etc.. Now wait a second...
[Updated (1.5)] Commonly Used .NET Coding Patterns in CodeDom
I have uploaded another update (1.5) to my article: Commonly Used .NET Coding Patterns in CodeDom. Major changes made since 1.4: The Typed Collection pattern has been added. The Argument Assertion patterns have been added. Assembly and all types are now...
NStatic
In Specifications and More on Specifications , Wesner Moise talks about some of the features in his upcoming tool NStatic , which is a static analysis tool for .NET. I've been following Wesner for a couple of years now, being especially interested in...
Visualizers Returns
I really liked the results of my previous experiment and have created another one. This time, it's for those of you out there who dabble in colors: The System.Drawing.Color Visualizer The visualizer shows the color and an underlay color to compare to...
More Posts Next page »