我在这里遇到困难,是否有正确的方法来检查XmlSchemaParticle是否为EmptyParticle?
XmlSchemaParticle.EmptyParticle似乎是XmlSchemaParticle的私有内部类.
我现在正在做的是particle.GetType().Name ==“EmptyParticle”,我发现它相当难看.
还有其他选择吗?
解决方法
我今天遇到了同样的问题.我通过检查
XmlSchemaComplexType.ContentType财产来解决这个问题:
public bool HasEmptyParticle(XmlSchemaComplexType type) { return type.ContentTypeParticle != null && type.ContentType == XmlSchemaContentType.Empty; }