Congratulations for the fantastic tool "http://converter.telerik.com"
which i use sometimes when need to translate code from c # to vb.
The problem is that for some weeks it gives an error when i try to convert c# code that contains the "XmlElement" tag, for example the following code:
[XmlRoot(ElementName = "Navegacion")]
public class Navegacion
{
[XmlAttribute(AttributeName = "Error")]
public string Error {get;set;}
[XmlAttribute(AttributeName = "ErrorCode")]
public string ErrorCode{get;set;}
[XmlAttribute(AttributeName = "Respuesta")]
public string Respuesta{get;set;}
[XmlAttribute(AttributeName = "Version")]
public string Version {get;set;}
}