Liquid XML Objects (C#, Visual Basic .Net) / Using the Generated Code / XML Schema Handling / xs:list
In This Topic
    xs:list
    In This Topic

    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;}