c# xml deserialize
        Posted  
        
            by Moony
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Moony
        
        
        
        Published on 2010-04-27T19:23:38Z
        Indexed on 
            2010/04/27
            19:33 UTC
        
        
        Read the original article
        Hit count: 424
        
I have xml wherein i have xml within it again, like:
<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<Tag>
<Value1> </Value1>
<Value2><?xml version=\"1.0\" encoding=\"UTF-8\"?>... </Value2>
</Tag>
Deserializing doesnt work on this string in c#. I construct this string in java and send it to a c# app. how can i get around this?
© Stack Overflow or respective owner