Using XAML for Custom Object Graphs
XAML is best known for its use with WPF/Silverlight, but the XAML parser is also a powerful generic serialize/deserialize tool for many .NET object graphs. For example, XAML is used for Windows Workflow (WF). This post will show a basic example and some tips to use XAML parsing in your own code. SampleXamlParser.zip Tips to Watch Out For If you put a .xaml file in your VS project, be sure to set it’s "Build" property to "None" (from the default of "Page"). If you don’t VS will cause a build error on the XAML line where your assembly is defined. … Continue reading Using XAML for Custom Object Graphs