vote up 0 vote down star

How can I do this?

Tried using a TypeConverter, but the only thing I could think of was to construct the XML for the types, which doesn't quite cut it. TypeConverters in xaml serialization will escape xml and treat it like plain text. Value converters aren't much better.

Now, I'm moving to ISupportInitialize and will throw if changes are made after initialization, but I would have liked the immutable route...


Example of a type I wish to serialize:

public struct Foo
{
  public string Bar {get;private set;}
  public Foo(string bar) : this()
  {
    Bar = bar;
  }
}

and the code

var foo = new Foo("lol");
var serializedFoo = XamlWriter.Save(foo);
flag

It would help if you'd show some code to understand what you're trying to do – codymanix Sep 18 at 23:24

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.