|
I used the following line in vb.net:
Dim ct As XmlSchemaComplexType = parentElement.ElementType
to replace this one in c#:
XmlSchemaComplexType ct = parentElem.ElementType as XmlSchemaComplexType
On the next line, I try to access the LocalElements collection - but I don't see a LocalElements collection in my intellisense. (I see Particle, Qualified Name, etc.) I don't think I have the right syntax in vb.net.
You wouldn't have to have any ideas on the syntax for vb.net? Thanks again...this has been extremely helpful. I have found very little sample code in this area.
|