Yet another C# developer with a blog.
Browse by Tags
All Tags »
C# »
Converter (
RSS)
-
|
Last Friday I wrote about how I had redesigned my Converter class and renamed it to ModelConverter. I ran out of time for blogging so I didn't get a chance to demonstrate how to use the new converter class. I'll do that today. I think code examples...
|
-
|
Last time we started discussing the internals of the Converter class. We stopped before we covered the CreateConverterClass method. Let's continue today from that point. Here is a listing of that method: private static void CreateConverterClass( string...
|
-
|
Last time I presented an outline of my Converter class and I demonstrated using that class to convert between two model objects. Today I'll begin a discussion of the internals of the Converter class itself. When I created the Converter class I began...
|
-
|
Today I'm going to talk about a utility class that I recently added to my CG.Data library named Converter. The purpose of this class is to convert between instances of model classes in a multi-tiered database application. For instance, in most layered...
|