gpt4 book ai didi

c# - 有什么方法可以检查 XmlSchemaParticle 是否为 EmptyParticle?

转载 作者:数据小太阳 更新时间:2023-10-29 01:48:12 27 4
gpt4 key购买 nike

我在这里遇到了一些问题,是否有正确方法来检查 XmlSchemaParticle 是否为 EmptyParticle

XmlSchemaParticle.EmptyParticle 似乎是 XmlSchemaParticle 的私有(private)内部类。

我现在正在做的是 particle.GetType().Name == "EmptyParticle" 我觉得它很难看。

还有其他选择吗?

最佳答案

我今天遇到了同样的问题。我可以通过检查 XmlSchemaComplexType.ContentType 来绕过它属性:

public bool HasEmptyParticle(XmlSchemaComplexType type)
{
return type.ContentTypeParticle != null && type.ContentType == XmlSchemaContentType.Empty;
}

关于c# - 有什么方法可以检查 XmlSchemaParticle 是否为 EmptyParticle?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5315189/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com