ploeh blog

Mark Seemann's discontinued .NET blog.

April, 2007

Posts
  • ploeh blog

    Hello World

    • 20 Comments
    private static void Main( string [] args) { Person father = new Person (); Person mother = new Person (); Person girl = new Person (); Person boy = mother.Emit(mother.Union(father), new DateTime (2007, 4, 21)); girl.PromoteTo( Rank .BigSister); mother...
  • ploeh blog

    Unit Testing Activity CodeDOM Serializers

    • 2 Comments
    Windows Workflow Foundation (WF) defines workflows as object graphs. To save or compile workflow definitions, these object graphs must be serialized, and WF supports serialization to both XAML and code. Similar to other components, WF utilizes the .NET...
  • ploeh blog

    BPL

    • 4 Comments
    Although my daughter is now 4½ years old, she still can't write code. Some may say that it's because she has not yet learned to read and write in general, but we at Microsoft know differently: Even though our current development tools are very productive...
  • ploeh blog

    Validating Code Serialized by CodeDomDesignerLoaders

    • 1 Comments
    A while back I wrote about unit testing component serializers , but I left the task of validating the generated code against an expected result up to the reader. The approach outlined in that article was to retrieve the generated code as a string and...
Page 1 of 1 (4 items)