I have used JAXB and Ant Script to convert XSD to Java classes. After that i have used Java to C# code converter tool. Below is one of the C# code from the generated with the comments
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Java.city") public class AdxpCity extends ADXP
public class JavaCity : Java
{
}
Should i convert commented @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Java.city")
(or) Can i use above class as it is?