c# – 检查XmlSchemaParticle是否为EmptyParticle的任何方法?

前端之家收集整理的这篇文章主要介绍了c# – 检查XmlSchemaParticle是否为EmptyParticle的任何方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在这里遇到困难,是否有正确的方法来检查XmlSchemaParticle是否为EmptyParticle?

XmlSchemaParticle.EmptyParticle似乎是XmlSchemaParticle的私有内部类.

我现在正在做的是particle.GetType().Name ==“EmptyParticle”,我发现它相当难看.

还有其他选择吗?

解决方法

我今天遇到了同样的问题.我通过检查 XmlSchemaComplexType.ContentType财产来解决这个问题:
public bool HasEmptyParticle(XmlSchemaComplexType type)
{
    return type.ContentTypeParticle != null && type.ContentType == XmlSchemaContentType.Empty;
}
原文链接:https://www.f2er.com/csharp/99410.html

猜你在找的C#相关文章