Types created using the xs:list construct are generated as arrays of items.
Example XSD |
Copy Code
|
---|---|
<xs:element name="ListOfStrings" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:simpleType> <xs:list itemType="xs:string" /> </xs:simpleType> </xs:element> |
Generated Code |
Copy Code
|
---|---|
public string[] ListOfStrings {get;set;} |