Serialize xml document with text and element in the same tag

Is it possible to serialize xml document in C# to produce such tags\[code\]...<myTag attr="tag"> this is text <a href="http://yaplex.com">link in the same element</a></myTag>...\[/code\]The only one way I found is have content of myTag as string \[code\]myTag.Value = "http://stackoverflow.com/questions/10739596/text <a ...>link</a>"; \[/code\]but I want to have it as object in C#, so a-tag will be an object
 
Back
Top