我从自定义配置部分加载时遇到问题。
有问题的部分是什么。我在选择元素的 XSD 模式下定义了两个元素(第一个和第二个)。用户在配置时只能选择一项。让我们这样说:
<customSection>
<First attribute ="test" />
</customSection>
或者
<customSection>
<Second attribute ="test" attribute2 ="np" />
</customSection>
当我加载该配置时,在这两种情况下配置元素 First 和 Second 都将被加载,它们不会为空(对象将为空)。在第一种情况下,如何实现 Second 对象为 null ?
谢谢