Globally enable nullability in XML (#41438)
authorKrzysztof Wicher <mordotymoja@gmail.com>
Thu, 27 Aug 2020 12:57:29 +0000 (14:57 +0200)
committerGitHub <noreply@github.com>
Thu, 27 Aug 2020 12:57:29 +0000 (14:57 +0200)
* Globally enable nullability in XML

* remove double #nullable enable in the file

658 files changed:
src/libraries/Common/src/SkipLocalsInit.cs
src/libraries/Common/src/System/CSharpHelpers.cs
src/libraries/Common/src/System/HexConverter.cs
src/libraries/Common/src/System/Marvin.cs
src/libraries/System.Private.Xml/src/Misc/HResults.cs
src/libraries/System.Private.Xml/src/System.Private.Xml.csproj
src/libraries/System.Private.Xml/src/System/Xml/AsyncHelper.cs
src/libraries/System.Private.Xml/src/System/Xml/Base64Decoder.cs
src/libraries/System.Private.Xml/src/System/Xml/Base64Encoder.cs
src/libraries/System.Private.Xml/src/System/Xml/Base64EncoderAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/BinHexDecoder.cs
src/libraries/System.Private.Xml/src/System/Xml/BinHexEncoder.cs
src/libraries/System.Private.Xml/src/System/Xml/BinHexEncoderAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/BinaryXml/BinXmlToken.cs
src/libraries/System.Private.Xml/src/System/Xml/BinaryXml/SqlUtils.cs
src/libraries/System.Private.Xml/src/System/Xml/BinaryXml/XmlBinaryReader.cs
src/libraries/System.Private.Xml/src/System/Xml/BitStack.cs
src/libraries/System.Private.Xml/src/System/Xml/Bits.cs
src/libraries/System.Private.Xml/src/System/Xml/ByteStack.cs
src/libraries/System.Private.Xml/src/System/Xml/Cache/Shape.cs
src/libraries/System.Private.Xml/src/System/Xml/Cache/ShapeGenerator.cs
src/libraries/System.Private.Xml/src/System/Xml/Cache/XPathDocumentBuilder.cs
src/libraries/System.Private.Xml/src/System/Xml/Cache/XPathDocumentIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/Cache/XPathDocumentNavigator.cs
src/libraries/System.Private.Xml/src/System/Xml/Cache/XPathDocumentView.cs
src/libraries/System.Private.Xml/src/System/Xml/Cache/XPathNode.cs
src/libraries/System.Private.Xml/src/System/Xml/Cache/XPathNodeHelper.cs
src/libraries/System.Private.Xml/src/System/Xml/Cache/XPathNodeInfoAtom.cs
src/libraries/System.Private.Xml/src/System/Xml/Cache/XPathNodeView.cs
src/libraries/System.Private.Xml/src/System/Xml/Cache/XPathNodeViewPropertyDescriptor.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/CharEntityEncoderFallback.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/ConformanceLevel.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/DtdProcessing.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/EntityHandling.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/HtmlEncodedRawTextWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/HtmlRawTextWriterGenerator.ttinclude
src/libraries/System.Private.Xml/src/System/Xml/Core/HtmlTernaryTree.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/HtmlUtf8RawTextWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/IDtdInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/IDtdParser.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/IDtdParserAdapter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/IDtdParserAdapterAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/IDtdParserAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/IRemovableWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/IValidationEventHandling.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/IncrementalReadDecoders.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/LocalAppContextSwitches.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/NamespaceHandling.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/NewLineHandling.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/QueryOutputWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/QueryOutputWriterV1.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/ReadContentAsBinaryHelper.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/ReadContentAsBinaryHelperAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/ReadOnlyTernaryTree.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/ReadState.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/TextEncodedRawTextWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/TextRawTextWriterGenerator.ttinclude
src/libraries/System.Private.Xml/src/System/Xml/Core/TextUtf8RawTextWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/ValidatingReaderNodeData.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/ValidationType.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/WhitespaceHandling.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlAsyncCheckReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlAsyncCheckWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlAutoDetectWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlCharCheckingReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlCharCheckingReaderAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlCharCheckingWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlCharCheckingWriterAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlEncodedRawTextWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlEncodedRawTextWriterAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlEventCache.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlParserContext.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlRawTextWriterGenerator.ttinclude
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlRawTextWriterGeneratorAsync.ttinclude
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlRawWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlRawWriterAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlReaderAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlReaderSettings.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlSpace.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlSubtreeReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlSubtreeReaderAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlTextEncoder.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlTextReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlTextReaderImpl.Unix.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlTextReaderImpl.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlTextReaderImplAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlTextReaderImplHelpers.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlTextReaderImplHelpersAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlTextWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlUtf8RawTextWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlUtf8RawTextWriterAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlValidatingReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlValidatingReaderImpl.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlValidatingReaderImplAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlWellFormedWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlWellFormedWriterAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlWellFormedWriterHelpers.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlWellFormedWriterHelpersAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlWrappingReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlWrappingReaderAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlWrappingWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlWrappingWriterAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlWriterAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XmlWriterSettings.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XsdCachingReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XsdCachingReaderAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XsdValidatingReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Core/XsdValidatingReaderAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/DiagnosticsSwitches.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/DocumentSchemaValidator.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/DocumentXPathNavigator.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/DocumentXmlWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/DomNameTable.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XPathNodeList.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlAttributeCollection.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlCDataSection.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlCharacterData.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlChildEnumerator.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlChildNodes.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlComment.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlDeclaration.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlDocument.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlDocumentFragment.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlDocumentType.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlDomTextWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlElement.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlElementList.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlEntity.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlEntityReference.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlEventChangedAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlImplementation.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlLinkedNode.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlLoader.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlName.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlNamedNodeMap.SmallXmlNodeList.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlNamedNodemap.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlNode.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlNodeChangedEventArgs.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlNodeChangedEventHandler.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlNodeList.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlNodeReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlNotation.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlProcessingInstruction.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlSignificantWhiteSpace.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlText.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlUnspecifiedAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Dom/XmlWhitespace.cs
src/libraries/System.Private.Xml/src/System/Xml/EmptyEnumerator.cs
src/libraries/System.Private.Xml/src/System/Xml/Extensions/ExtensionMethods.cs
src/libraries/System.Private.Xml/src/System/Xml/HWStack.cs
src/libraries/System.Private.Xml/src/System/Xml/IApplicationResourceStreamResolver.cs
src/libraries/System.Private.Xml/src/System/Xml/IHasXmlNode.cs
src/libraries/System.Private.Xml/src/System/Xml/IXmlLineInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/IXmlNamespaceResolver.cs
src/libraries/System.Private.Xml/src/System/Xml/LineInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/MTNameTable.cs
src/libraries/System.Private.Xml/src/System/Xml/NameTable.cs
src/libraries/System.Private.Xml/src/System/Xml/Ref.cs
src/libraries/System.Private.Xml/src/System/Xml/Resolvers/XmlKnownDtds.cs
src/libraries/System.Private.Xml/src/System/Xml/Resolvers/XmlPreloadedResolver.cs
src/libraries/System.Private.Xml/src/System/Xml/Resolvers/XmlPreloadedResolverAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/Asttree.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/AutoValidator.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/BaseProcessor.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/BaseValidator.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/BitSet.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/Chameleonkey.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/CompiledidEntityConstraint.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/ConstraintStruct.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/ContentValidator.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/DataTypeImplementation.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/DtdParser.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/DtdParserAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/DtdValidator.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/FacetChecker.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/IXmlSchemaInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/Inference/Infer.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/Inference/XmlSchemaInferenceException.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/NamespaceList.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/Parser.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/ParserAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/Preprocessor.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaAttDef.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaBuilder.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaCollectionCompiler.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaCollectionpreProcessor.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaDeclBase.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaElementDecl.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaEntity.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaNames.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaNamespacemanager.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaNotation.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaSetCompiler.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/SchemaType.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/ValidationEventArgs.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/ValidationEventHandler.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/ValidationState.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XdrBuilder.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XdrValidator.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlAtomicValue.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchema.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaAll.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaAnnotated.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaAnnotation.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaAny.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaAnyAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaAppInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaAttributeGroup.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaAttributeGroupref.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaChoice.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaCollection.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaCompilationSettings.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaComplexContent.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaComplexContentExtension.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaComplexContentRestriction.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaComplexType.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaContent.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaContentModel.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaContentProcessing.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaContentType.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaDataType.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaDerivationMethod.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaDocumentation.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaElement.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaException.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaExternal.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaFacet.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaForm.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaGroup.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaGroupBase.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaGroupRef.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaIdEntityConstraint.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaImport.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaInclude.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaNotation.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaObject.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaObjectCollection.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaObjectTable.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaParticle.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaRedefine.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaSequence.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaSet.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaSimpleContent.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaSimpleContentExtension.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaSimpleContentRestriction.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaSimpleType.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaSimpleTypeContent.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaSimpleTypeList.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaSimpleTypeRestriction.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaSimpleTypeUnion.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaSubstitutionGroup.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaType.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaUse.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaValidationException.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaValidator.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSchemaValidity.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlSeverityType.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlTokenizedType.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlTypeCode.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlUntypedStringConverter.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XmlValueConverter.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XsdBuilder.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XsdDateTime.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XsdDuration.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/XsdValidator.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/CodeGenerationoptions.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/CodeGenerator.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/CodeIdentifier.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/CodeIdentifiers.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/Compilation.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/Compiler.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/Configuration/DateTimeSerializationSection.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/Globals.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/IXmlSerializable.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/IXmlTextParser.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/ImportContext.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/Mappings.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/Models.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/NameTable.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/PrimitiveXmlSerializers.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/ReflectionXmlSerializationReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/ReflectionXmlSerializationWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SchemaImporter.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SchemaObjectWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SoapAttributeAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SoapAttributeOverrides.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SoapAttributes.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SoapElementAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SoapEnumAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SoapIgnoreAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SoapIncludeAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SoapReflectionImporter.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SoapSchemamember.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SoapTypeAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/SourceInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/TypeCode.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/TypeExtensions.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/Types.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlAnyAttributeAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlAnyElementAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlAnyElementAttributes.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlArrayAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlArrayItemAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlArrayItemAttributes.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlAttributeAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlAttributeOverrides.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlAttributes.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlChoiceIdentifierAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlElementAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlElementAttributes.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlEnumAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlIgnoreAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlIncludeAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlMapping.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlMemberMapping.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlMembersMapping.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlNamespaceDeclarationsAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlReflectionImporter.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlReflectionMember.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlRootAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSchemaExporter.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSchemaImporter.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSchemaProviderAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSchemas.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializationEventSource.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializationGeneratedCode.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializationILGen.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializationReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializationReaderILGen.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializationWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializationWriterILGen.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializer.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializerAssemblyAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializerFactory.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializerNamespaces.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlSerializerVersionAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlTextAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlTypeAttribute.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/XmlTypeMapping.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/Xmlcustomformatter.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/_Events.cs
src/libraries/System.Private.Xml/src/System/Xml/Serialization/indentedWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/ValidateNames.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/IXPathNavigable.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/AbsoluteQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/AstNode.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/AttributeQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/Axis.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/BaseAxisQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/BooleanExpr.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/BooleanFunctions.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/CacheAxisQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/CacheChildrenQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/CacheOutputQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/ChildrenQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/ClonableStack.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/CompiledXPathExpr.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/ContextQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/DescendantBaseQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/DescendantQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/DescendantoverDescendantQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/DocumentorderQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/EmptyQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/ExtensionQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/Filter.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/FilterQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/FollSiblingQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/FollowingQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/ForwardPositionQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/Function.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/FunctionQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/Group.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/GroupQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/IdQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/IteratorFilter.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/LogicalExpr.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/MergeFilterQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/NamespaceQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/NodeFunctions.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/NumberFunctions.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/NumericExpr.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/Operand.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/OperandQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/Operator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/ParentQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/PreSiblingQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/PrecedingQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/Query.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/QueryBuilder.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/ResetableIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/ReversePositionQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/Root.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/SortQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/StringFunctions.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/UnionExpr.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/ValueQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/Variable.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/VariableQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathAncestorIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathAncestorQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathArrayIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathAxisIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathChildIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathDescendantIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathEmptyIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathMultyIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathParser.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathScanner.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathSelectionIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathSelfQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathSingletonIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/XPathDocument.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/XPathException.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/XPathExpr.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/XPathItem.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/XPathNamespaceScope.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/XPathNavigator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/XPathNavigatorKeyComparer.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/XPathNavigatorReader.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/XPathNodeIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/XPath/XPathNodeType.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlCharType.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlComplianceUtil.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlConvert.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlDownloadManager.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlDownloadManagerAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlEncoding.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlException.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlNameTable.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlNamespaceScope.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlNamespacemanager.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlNodeOrder.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlNodeType.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlNullResolver.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlQualifiedName.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlReservedNs.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlResolver.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlResolverAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlSecureResolver.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlSecureResolverAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlUrlResolver.cs
src/libraries/System.Private.Xml/src/System/Xml/XmlUrlResolverAsync.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/ISourceLineInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/GenerateHelper.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/IteratorDescriptor.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/OptimizerPatterns.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/StaticDataManager.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/TailCallAnalyzer.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/XmlILAnnotation.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/XmlILConstructAnalyzer.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/XmlILModule.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/XmlILOptimization.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/XmlILOptimizerVisitor.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/XmlILTrace.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/XmlIlTypeHelper.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/IlGen/XmlIlVisitor.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/ListBase.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Pair.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilBinary.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilChoice.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilCloneVisitor.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilDataSource.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilExpression.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilFactory.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilFunction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilInvoke.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilInvokeEarlyBound.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilInvokeLateBound.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilIterator.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilList.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilLiteral.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilLoop.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilName.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilNode.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilNodeType.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilParameter.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilPatternFactory.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilPatternVisitor.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilReference.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilReplaceVisitor.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilScopedVisitor.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilSortKey.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilStrConcat.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilTargetType.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilTernary.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilTypeChecker.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilUnary.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilValidationVisitor.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilVisitor.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/QilXmlWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/SerializationHints.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/SubstitutionList.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QIL/WhitespaceRule.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/QueryReaderSettings.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/ContentIterators.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/DecimalFormatter.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/DocumentOrderComparer.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/DodSequenceMerge.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/EarlyBoundInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/NumberFormatter.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/RtfNavigator.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/SetIterators.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/SiblingIterators.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/StringConcat.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/TreeIterators.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/WhitespaceRuleLookup.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/WhitespaceRuleReader.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlAggregates.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlAttributeCache.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlCollation.Unix.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlCollation.Windows.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlCollation.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlExtensionFunction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlILIndex.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlILStorageConverter.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlIterators.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlNavigatorFilter.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlNavigatorStack.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlQueryContext.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlQueryOutput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlQueryRuntime.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlQuerySequence.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlQueryStaticData.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlRawWriterWrapper.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlSequenceWriter.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlSortKey.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XmlSortKeyAccumulator.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XslNumber.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XsltConvert.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XsltFunctions.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Runtime/XsltLibrary.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/SourceLineInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XPath/IXPathEnvironment.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XPath/IXpathBuilder.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XPath/XPathAxis.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XPath/XPathBuilder.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XPath/XPathCompileException.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XPath/XPathContext.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XPath/XPathOperator.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XPath/XPathParser.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XPath/XPathQilFactory.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XPath/XPathScanner.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XPathConvert.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XmlILCommand.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XmlIlGenerator.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XmlNodeKindFlags.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XmlQualifiedNameTest.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XmlQueryCardinality.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XmlQueryType.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XmlQueryTypeFactory.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XslException.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/Compiler.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/CompilerError.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/CompilerScopeManager.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/Focus.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/IErrorHelper.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/InvokeGenerator.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/KeyMatchBuilder.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/Keywords.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/MatcherBuilder.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/OutputScopeManager.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/QilGenerator.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/QilGeneratorEnv.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/QilStrConcatenator.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/Scripts.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/Stylesheet.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/XPathPatternBuilder.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/XPathPatternParser.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/XslAst.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/XslAstAnalyzer.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/XslFlags.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/XslVisitor.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/XsltInput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/XsltLoader.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/Xslt/XsltQilFactory.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/Action.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/ActionFrame.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/ApplyImportsAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/ApplyTemplatesAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/AttributeAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/AttributeSetAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/Avt.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/AvtEvent.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/BeginEvent.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/BuilderInfo.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CallTemplateAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/ChooseAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CommentAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CompiledAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/Compiler.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/ContainerAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CopyAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CopyAttributesAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CopyCodeAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CopyNamespacesAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CopyNodeSetAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CopyOfAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/DbgCompiler.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/DocumentScope.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/ElementAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/EndEvent.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/Event.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/ForEachAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/HtmlProps.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/IRecordOutput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/IfAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/InputScope.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/InputScopeManager.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/MessageAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/NameSpaceEvent.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/NamespaceDecl.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/NavigatorInput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/NavigatorOutput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/NumberAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/OutKeywords.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/OutputScope.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/OutputScopeManager.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/PrefixQName.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/ProcessingInstructionAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/Processor.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/ReaderOutput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/RecordBuilder.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/RootAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/SequentialOutput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/SortAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/StateMachine.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/StringOutput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/Stylesheet.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/TemplateAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/TemplateBaseAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/TemplateLookupAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/TemplateManager.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/TextAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/TextEvent.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/TextOnlyOutput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/TextOutput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/TheQuery.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/UseAttributeSetsAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/ValueOfAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/VariableAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/WithParamAction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/WriterOutput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/XsltCompileContext.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/XsltDebugger.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/XsltOutput.cs
src/libraries/System.Private.Xml/src/System/Xml/Xsl/XsltOld/newinstructionaction.cs
src/libraries/System.Private.Xml/src/System/Xml/Xslt/XslCompiledTransform.cs
src/libraries/System.Private.Xml/src/System/Xml/Xslt/XslTransform.cs
src/libraries/System.Private.Xml/src/System/Xml/Xslt/XsltArgumentList.cs
src/libraries/System.Private.Xml/src/System/Xml/Xslt/XsltContext.cs
src/libraries/System.Private.Xml/src/System/Xml/Xslt/XsltException.cs
src/libraries/System.Private.Xml/src/System/Xml/Xslt/XsltSettings.cs

index b462975..cf6403c 100644 (file)
@@ -1,5 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 // Used to indicate to the compiler that the .locals init flag should not be set in method headers.
 [module: System.Runtime.CompilerServices.SkipLocalsInit]
index ac1be41..decc30b 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Collections.Generic;
 using System.Globalization;
 
index d0cd3f0..7f24477 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Diagnostics;
 using System.Runtime.CompilerServices;
 
index e8a907d..35bd8e2 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Diagnostics;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
index 439cb63..2cc3c39 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 /*
 These HRESULTs are used for mapping managed exceptions to COM error codes
 and vice versa through COM Interop.  For background on COM error codes see
index c3b7f51..0d6948e 100644 (file)
@@ -4,6 +4,7 @@
     <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     <DefineConstants>$(DefineConstants);FEATURE_COMPILED_XSL</DefineConstants>
     <TargetFrameworks>$(NetCoreAppCurrent)-Windows_NT;$(NetCoreAppCurrent)</TargetFrameworks>
+    <Nullable>enable</Nullable>
   </PropertyGroup>
   <ItemGroup>
     <Compile Include="$(CommonPath)System\Text\StringBuilderCache.cs"
index a971970..7ffde78 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Threading.Tasks;
 
 namespace System.Xml
index c26e9cd..950d840 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 
index 75dcada..1e2212a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Text;
 using System.Diagnostics;
 
index 2988ccd..3c7f28c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Text;
 using System.Diagnostics;
 
index 6c6a620..b4551c5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 
index ee8a5a3..397b48a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     internal static partial class BinHexEncoder
index 7bd9b7e..9a84f5f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Threading.Tasks;
 
 namespace System.Xml
index 93c5275..be6227c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.IO;
index be9c17c..d8bf112 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.IO;
index aed2a19..d8f34ab 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 1a0222c..b621a00 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 
index 7739c96..9105407 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 
index dc07dae..4314b0c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 
 namespace System.Xml
index 8f59bf4..0efb592 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 #if ENABLEDATABINDING
 using System;
 using System.Xml;
index 505fab2..6238991 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 #if ENABLEDATABINDING
 using System;
 using System.Xml;
index 34c4fcc..41c65bd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Globalization;
 using System.IO;
index bcdaaab..fd68a47 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml.XPath;
 
index 18a32e7..094016b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Text;
 using System.Xml;
index ae944a7..a780dbc 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 #if ENABLEDATABINDING
 using System;
 using System.Xml;
index e8c1dd5..30e93b6 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Xml.XPath;
index aaea5e0..857b694 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Xml.XPath;
index 4396a83..0c23b91 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Text;
index ae4c290..4444ce2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 #if ENABLEDATABINDING
 using System;
 using System.Xml;
index 870be79..43dbc7f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 #if ENABLEDATABINDING
 using System;
 using System.Xml;
index e729205..c7b9b63 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Text;
 using System.Diagnostics;
 using System.Globalization;
index a3dbf7e..6db2882 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     public enum ConformanceLevel
index 3bc5506..75d9252 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // DtdProcessing enumerations specifies how will an XmlReader handle DTDs in the XML document.
index 65ab21c..7fbcb39 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // Specifies how entities are handled in XmlTextReader and XmlValidatingReader.
index f35ab6f..bd7c248 100644 (file)
@@ -4,6 +4,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify HtmlRawTextWriterGenerator.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Text;
@@ -802,7 +803,6 @@ namespace System.Xml
         //
         // Constructors
         //
-
         public HtmlEncodedRawTextWriterIndent(TextWriter writer, XmlWriterSettings settings) : base(writer, settings)
         {
             Init(settings);
index 7763db0..3af8316 100644 (file)
@@ -5,6 +5,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify HtmlRawTextWriterGenerator.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Text;
@@ -573,12 +574,13 @@ namespace System.Xml
                     {
                         pDstEnd = pDstBegin + _bufLen;
                     }
+
 <# if (WriterType == RawTextWriterType.Utf8) {#>
                     while (pDst < pDstEnd && (_xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch <= 0x7F))
 <# } else { #>
                     while (pDst < pDstEnd && _xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)))
-<# }
-#>                    {
+<# } #>
+                    {
                         *pDst++ = (<#= BufferType #>)ch;
                         pSrc++;
                     }
@@ -813,8 +815,8 @@ namespace System.Xml
         {
             Init(settings);
         }
-<# }
-#>
+
+<# } #>
         public <#= ClassNameIndent #>(Stream stream, XmlWriterSettings settings) : base(stream, settings)
         {
             Init(settings);
index 98de7ca..36450f8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 // This file is generated by TernaryTreeGenerator.cs,
 // and is used by the TernaryTreeRO class.
 
index 2b71f86..228088b 100644 (file)
@@ -4,6 +4,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify HtmlRawTextWriterGenerator.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Text;
@@ -779,7 +780,6 @@ namespace System.Xml
         //
         // Constructors
         //
-
         public HtmlUtf8RawTextWriterIndent(Stream stream, XmlWriterSettings settings) : base(stream, settings)
         {
             Init(settings);
index 400d313..66aa795 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 
index 3f771d8..90def36 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 
index 29d730c..e15c6f5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics.CodeAnalysis;
 using System.Text;
index 0299d26..6fab022 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Text;
 using System.Xml.Schema;
index 9134424..261c37d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 
index c74dc52..7399313 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     /// <summary>
index 57ce91b..7e35927 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml.Schema;
 
index cd61d58..8047903 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 
 namespace System.Xml
index dd1d002..1c6a61c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Runtime.CompilerServices;
 
 namespace System
index f326b59..b96189e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     //
index 2020cec..1e60dd2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // NewLineHandling specifies what will XmlWriter do with new line characters. The options are:
index 6cced37..86e8bd8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     using System;
index 527c893..88cf3c9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Diagnostics;
index 53a4f6a..043e911 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 
 namespace System.Xml
index ac94c57..9b2492b 100644 (file)
@@ -2,7 +2,6 @@
 // The .NET Foundation licenses this file to you under the MIT license.
 
 using System.Diagnostics;
-
 using System.Threading.Tasks;
 
 namespace System.Xml
@@ -316,7 +315,7 @@ namespace System.Xml
                     {
                         if (_valueOffset < _valueChunkLength)
                         {
-                            int decodedCharsCount = _decoder.Decode(_valueChunk, _valueOffset, _valueChunkLength - _valueOffset);
+                            int decodedCharsCount = _decoder.Decode(_valueChunk!, _valueOffset, _valueChunkLength - _valueOffset);
                             _valueOffset += decodedCharsCount;
                         }
                         if (_decoder.IsFull)
@@ -324,7 +323,7 @@ namespace System.Xml
                             return _decoder.DecodedCount;
                         }
                         Debug.Assert(_valueOffset == _valueChunkLength);
-                        if ((_valueChunkLength = await _reader.ReadValueChunkAsync(_valueChunk, 0, ChunkSize).ConfigureAwait(false)) == 0)
+                        if ((_valueChunkLength = await _reader.ReadValueChunkAsync(_valueChunk!, 0, ChunkSize).ConfigureAwait(false)) == 0)
                         {
                             break;
                         }
index c33e206..5b0d0ea 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Diagnostics;
index 63bb693..7953441 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // Specifies the state of the XmlReader.
index 0561b1d..113c95c 100644 (file)
@@ -4,6 +4,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify TextRawTextWriterGenerator.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Text;
index c003190..5147cc7 100644 (file)
@@ -5,6 +5,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify TextRawTextWriterGenerator.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Text;
@@ -20,12 +21,13 @@ namespace System.Xml
     // operation with serialization in order to achieve better performance.
     // </summary>
     internal class <#= ClassName #> : <#= BaseClassName #>
-    {<#
-if (WriterType == RawTextWriterType.Encoded) { #>
+    {
+<# if (WriterType == RawTextWriterType.Encoded) { #>
         // Construct an instance of this class that outputs text to the TextWriter interface.
         public <#= ClassName #>(TextWriter writer, XmlWriterSettings settings) : base(writer, settings)
         {
         }
+
 <# } #>
         // Construct an instance of this class that serializes to a Stream interface.
         public <#= ClassName #>(Stream stream, XmlWriterSettings settings) : base(stream, settings)
index 74858b1..f0b317f 100644 (file)
@@ -4,6 +4,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify TextRawTextWriterGenerator.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Text;
index c58e0ec..74d4799 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index c75b571..e6350a1 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // Specifies the type of validation to perform in XmlValidatingReader or in XmlReaderSettings.
index 4e4df43..1b78f52 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // Specifies how whitespace is handled in XmlTextReader.
index 97909cf..bbb0479 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Threading.Tasks;
index 84990c8..9682986 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Threading.Tasks;
 using System.Xml.XPath;
 
index c3aa8c0..3997824 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     using System;
index ca0ce55..30b088c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Diagnostics;
index 68f79ba..85e0e2a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Diagnostics;
index 2fa82a6..548287e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index 4b5a0e9..1a6395c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index bc7a3a4..4b9796b 100644 (file)
@@ -4,6 +4,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify XmlRawTextWriterGenerator.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Xml;
@@ -49,7 +50,6 @@ namespace System.Xml
         protected bool _writeToNull;
         protected bool _hadDoubleBracket;
         protected bool _inAttributeValue;
-
         protected int _bufBytesUsed;
         protected char[] _bufChars;
 
@@ -1687,7 +1687,6 @@ namespace System.Xml
             }
         }
 
-
         protected void ChangeTextContentMark(bool value)
         {
             Debug.Assert(_inTextContent != value);
index 532039e..b48b605 100644 (file)
@@ -4,6 +4,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify XmlRawTextWriterGeneratorAsync.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Xml;
@@ -660,7 +661,6 @@ namespace System.Xml
                 // Move last buffer character to the beginning of the buffer (so that previous character can always be determined)
                 _bufChars[0] = _bufChars[_bufPos - 1];
 
-
                 // Reset buffer position
                 _textPos = (_textPos == _bufPos) ? 1 : 0;
                 _attrEndPos = (_attrEndPos == _bufPos) ? 1 : 0;
index 49f4ebc..2f4394c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Text;
index 77409e7..0ec44b8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml;
 using System.Text;
 using System;
index 05d1c89..1e52c37 100644 (file)
@@ -5,6 +5,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify XmlRawTextWriterGenerator.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Xml;
@@ -67,8 +68,8 @@ namespace System.Xml
         private int[] _textContentMarks;   // even indices contain text content start positions
                                            // odd indices contain markup start positions
         private readonly CharEntityEncoderFallback _charEntityFallback;
-<# }
-#>
+<# } #>
+
         // writer settings
         protected NewLineHandling _newLineHandling;
         protected bool _closeOutput;
@@ -88,9 +89,10 @@ namespace System.Xml
         private const int BUFSIZE = 2048 * 3;       // Should be greater than default FileStream size (4096), otherwise the FileStream will try to cache the data
         private const int ASYNCBUFSIZE = 64 * 1024; // Set async buffer size to 64KB
         private const int OVERFLOW = 32;            // Allow overflow in order to reduce checks when writing out constant size markup
-<# if (WriterType != RawTextWriterType.Utf8) {
-#>        private const int INIT_MARKS_COUNT = 64;
+<# if (WriterType != RawTextWriterType.Utf8) { #>
+        private const int INIT_MARKS_COUNT = 64;
 <# } #>
+
         //
         // Constructors
         //
@@ -116,6 +118,7 @@ namespace System.Xml
             }
         }
 <# if (WriterType == RawTextWriterType.Encoded) { #>
+
         // Construct an instance of this class that outputs text to the TextWriter interface.
         public <#= ClassName #>(TextWriter writer, XmlWriterSettings settings) : this(settings)
         {
@@ -138,6 +141,7 @@ namespace System.Xml
             }
         }
 <# } #>
+
         // Construct an instance of this class that serializes to a Stream interface.
         public <#= ClassName #>(Stream stream, XmlWriterSettings settings) : this(settings)
         {
@@ -152,8 +156,8 @@ namespace System.Xml
                 _bufLen = ASYNCBUFSIZE;
             }
 
-            <#= BufferName #> = new <#= BufferType #>[_bufLen + OVERFLOW];<#
-if (WriterType == RawTextWriterType.Utf8) { #>
+            <#= BufferName #> = new <#= BufferType #>[_bufLen + OVERFLOW];
+<# if (WriterType == RawTextWriterType.Utf8) { #>
             // Output UTF-8 byte order mark if Encoding object wants it
             if (!stream.CanSeek || stream.Position == 0)
             {
@@ -197,6 +201,7 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                 }
             }
 <# } #>
+
             // Write the xml declaration
             if (settings.AutoXmlDeclaration)
             {
@@ -754,8 +759,8 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                             _stream = null;
                         }
                     }
-                }<#
-if (WriterType == RawTextWriterType.Encoded) { #>
+                }
+<# if (WriterType == RawTextWriterType.Encoded) { #>
                 else if (_writer != null)
                 {
                     try
@@ -776,8 +781,8 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                             _writer = null;
                         }
                     }
-                }<#
-} #>
+                }
+<# } #>
             }
         }
 
@@ -786,12 +791,13 @@ if (WriterType == RawTextWriterType.Encoded) { #>
         {
             FlushBuffer();
             FlushEncoder();
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
             if (_stream != null)
             {
                 _stream.Flush();
-            }<#
-} else { #>
+            }
+<# } else { #>
             if (_stream != null)
             {
                 _stream.Flush();
@@ -799,8 +805,8 @@ if (WriterType == RawTextWriterType.Encoded) { #>
             else if (_writer != null)
             {
                 _writer.Flush();
-            }<#
-} #>
+            }
+<# } #>
         }
 
         //
@@ -813,14 +819,14 @@ if (WriterType == RawTextWriterType.Encoded) { #>
             {
                 // Output all characters (except for previous characters stored at beginning of buffer)
                 if (!_writeToNull)
-                {<#
-if (WriterType == RawTextWriterType.Utf8) { #>
+                {
+<# if (WriterType == RawTextWriterType.Utf8) { #>
                     if (_bufPos - 1 > 0)
                     {
                         Debug.Assert(_stream != null);
                         _stream.Write(<#= BufferName #>, 1, _bufPos - 1);
-                    }<#
-} else { #>
+                    }
+<# } else { #>
                     Debug.Assert(_stream != null || _writer != null);
 
                     if (_stream != null)
@@ -852,8 +858,8 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                             // Write text to TextWriter
                             _writer.Write(<#= BufferName #>, 1, _bufPos - 1);
                         }
-                    }<#
-} #>
+                    }
+<# } #>
                 }
             }
             catch
@@ -866,6 +872,7 @@ if (WriterType == RawTextWriterType.Utf8) { #>
             {
                 // Move last buffer character to the beginning of the buffer (so that previous character can always be determined)
                 <#= BufferName #>[0] = <#= BufferName #>[_bufPos - 1];
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                 if (IsSurrogateByte(<#= BufferName #>[0]))
                 {
@@ -875,6 +882,7 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                     <#= BufferName #>[2] = <#= BufferName #>[_bufPos + 1];
                     <#= BufferName #>[3] = <#= BufferName #>[_bufPos + 2];
                 }
+
 <# } #>
                 // Reset buffer position
                 _textPos = (_textPos == _bufPos) ? 1 : 0;
@@ -885,6 +893,7 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                                    // close an empty element or in CDATA section detection of double ]; <#= BufferName #>[0] will always be 0
             }
         }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
         private void FlushEncoder()
         {
@@ -937,6 +946,7 @@ if (WriterType == RawTextWriterType.Utf8) { #>
             }
         }
 <# } #>
+
         // Serialize text that is part of an attribute value.  The '&', '<', '>', and '"' characters
         // are entitized.
         protected unsafe void WriteAttributeTextBlock(char* pSrc, char* pSrcEnd)
@@ -953,12 +963,13 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                     {
                         pDstEnd = pDstBegin + _bufLen;
                     }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                     while (pDst < pDstEnd && (_xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch <= 0x7F))
 <# } else { #>
                     while (pDst < pDstEnd && _xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)))
-<# }
-#>                    {
+<# } #>
+                    {
                         *pDst = (<#= BufferType #>)ch;
                         pDst++;
                         pSrc++;
@@ -1062,12 +1073,13 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                     {
                         pDstEnd = pDstBegin + _bufLen;
                     }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                     while (pDst < pDstEnd && (_xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch <= 0x7F))
 <# } else { #>
                     while (pDst < pDstEnd && _xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)))
-<# }
-#>                    {
+<# } #>
+                    {
                         *pDst = (<#= BufferType #>)ch;
                         pDst++;
                         pSrc++;
@@ -1178,12 +1190,13 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                     {
                         pDstEnd = pDstBegin + _bufLen;
                     }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                     while (pDst < pDstEnd && ((ch = *pSrc) <= 0x7F))
 <# } else { #>
                     while (pDst < pDstEnd && ((ch = *pSrc) < XmlCharType.SurHighStart))
-<# }
-#>                    {
+<# }#>
+                    {
                         pSrc++;
                         *pDst = (<#= BufferType #>)ch;
                         pDst++;
@@ -1227,12 +1240,13 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                     {
                         pDstEnd = pDstBegin + _bufLen;
                     }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                     while (pDst < pDstEnd && (_xmlCharType.IsTextChar((char)(ch = *pSrc)) && ch <= 0x7F))
 <# } else { #>
                     while (pDst < pDstEnd && _xmlCharType.IsTextChar((char)(ch = *pSrc)))
-<# }
-#>                    {
+<# } #>
+                    {
                         *pDst = (<#= BufferType #>)ch;
                         pDst++;
                         pSrc++;
@@ -1332,12 +1346,13 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                     {
                         pDstEnd = pDstBegin + _bufLen;
                     }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                     while (pDst < pDstEnd && (_xmlCharType.IsTextChar((char)(ch = *pSrc)) && ch != stopChar && ch <= 0x7F))
 <# } else { #>
                     while (pDst < pDstEnd && (_xmlCharType.IsTextChar((char)(ch = *pSrc)) && ch != stopChar))
-<# }
-#>                    {
+<# } #>
+                    {
                         *pDst = (<#= BufferType #>)ch;
                         pDst++;
                         pSrc++;
@@ -1468,12 +1483,13 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                     {
                         pDstEnd = pDstBegin + _bufLen;
                     }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                     while (pDst < pDstEnd && (_xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch != ']' && ch <= 0x7F))
 <# } else { #>
                     while (pDst < pDstEnd && (_xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch != ']'))
-<# }
-#>                    {
+<# } #>
+                    {
                         *pDst = (<#= BufferType #>)ch;
                         pDst++;
                         pSrc++;
@@ -1566,6 +1582,7 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                 _bufPos = (int)(pDst - pDstBegin);
             }
         }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
         // Returns true if UTF8 encoded byte is first of four bytes that encode a surrogate pair.
         // To do this, detect the bit pattern 11110xxx.
@@ -1573,6 +1590,7 @@ if (WriterType == RawTextWriterType.Utf8) { #>
         {
             return (b & 0xF8) == 0xF0;
         }
+
 <# } #>
         private static unsafe <#= BufferType #>* EncodeSurrogate(char* pSrc, char* pSrcEnd, <#= BufferType #>* pDst)
         {
@@ -1586,8 +1604,8 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                     int lowChar = pSrc[1];
                     if (lowChar >= XmlCharType.SurLowStart &&
                         (LocalAppContextSwitches.DontThrowOnInvalidSurrogatePairs || lowChar <= XmlCharType.SurLowEnd))
-                    {<#
-if (WriterType == RawTextWriterType.Utf8) { #>
+                    {
+<# if (WriterType == RawTextWriterType.Utf8) { #>
                         // Calculate Unicode scalar value for easier manipulations (see section 3.7 in Unicode spec)
                         // The scalar value repositions surrogate values to start at 0x10000.
 
@@ -1603,6 +1621,7 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                         pDst[1] = (<#= BufferType #>)lowChar;
                         pDst += 2;
 <# } #>
+
                         return pDst;
                     }
                     throw XmlConvert.CreateInvalidSurrogatePairException((char)lowChar, (char)ch);
@@ -1629,8 +1648,8 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                     return CharEntity(pDst, (char)ch);
                 }
                 else
-                {<#
-if (WriterType == RawTextWriterType.Utf8) { #>
+                {
+<# if (WriterType == RawTextWriterType.Utf8) { #>
                     if (ch < 0x80)
                     {
                         *pDst = (<#= BufferType #>)ch;
@@ -1644,6 +1663,7 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                     *pDst = (<#= BufferType #>)ch;
                     pDst++;
 <# } #>
+
                     return pDst;
                 }
             }
@@ -1655,8 +1675,8 @@ if (WriterType == RawTextWriterType.Utf8) { #>
 <#= EncodeChar(3, false) #>
         }
 
-<# if (WriterType == RawTextWriterType.Utf8) {
-#>        internal static unsafe byte* EncodeMultibyteUTF8(int ch, byte* pDst)
+<# if (WriterType == RawTextWriterType.Utf8) { #>
+        internal static unsafe byte* EncodeMultibyteUTF8(int ch, byte* pDst)
         {
             Debug.Assert(ch >= 0x80 && !XmlCharType.IsSurrogate(ch));
 
@@ -1704,8 +1724,9 @@ if (WriterType == RawTextWriterType.Utf8) { #>
                 pSrc++;
             }
         }
-<# }
-if (WriterType == RawTextWriterType.Encoded) { #>
+
+<# } #>
+<# if (WriterType == RawTextWriterType.Encoded) { #>
         protected void ChangeTextContentMark(bool value)
         {
             Debug.Assert(_inTextContent != value);
@@ -1725,6 +1746,7 @@ if (WriterType == RawTextWriterType.Encoded) { #>
             Array.Copy(_textContentMarks, newTextContentMarks, _textContentMarks.Length);
             _textContentMarks = newTextContentMarks;
         }
+
 <# } #>
         // Write NewLineChars to the specified buffer position and return an updated position.
         protected unsafe <#= BufferType #>* WriteNewLine(<#= BufferType #>* pDst)
@@ -1943,12 +1965,13 @@ if (WriterType == RawTextWriterType.Encoded) { #>
 
         //
         // Constructors
-        //<#
-if (WriterType == RawTextWriterType.Encoded) { #>
+        //
+<# if (WriterType == RawTextWriterType.Encoded) { #>
         public <#= ClassNameIndent #>(TextWriter writer, XmlWriterSettings settings) : base(writer, settings)
         {
             Init(settings);
         }
+
 <# } #>
         public <#= ClassNameIndent #>(Stream stream, XmlWriterSettings settings) : base(stream, settings)
         {
index 39e3882..4c274dc 100644 (file)
@@ -5,6 +5,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify XmlRawTextWriterGeneratorAsync.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Xml;
@@ -590,22 +591,22 @@ namespace System.Xml
         public override async Task FlushAsync()
         {
             CheckAsyncCall();
-            await FlushBufferAsync().ConfigureAwait(false);<#
-if (WriterType == RawTextWriterType.Encoded) { #>
-            await FlushEncoderAsync().ConfigureAwait(false);<#
-} #>
+            await FlushBufferAsync().ConfigureAwait(false);
+<# if (WriterType == RawTextWriterType.Encoded) { #>
+            await FlushEncoderAsync().ConfigureAwait(false);
+<# } #>
 
             if (_stream != null)
             {
                 await _stream.FlushAsync().ConfigureAwait(false);
             }
-<# if (WriterType == RawTextWriterType.Encoded) {
-#>            else if (_writer != null)
+<# if (WriterType == RawTextWriterType.Encoded) { #>
+            else if (_writer != null)
             {
                 await _writer.FlushAsync().ConfigureAwait(false);
             }
-<# }
-#>        }
+<# } #>
+        }
 
         //
         // Implementation methods
@@ -618,14 +619,14 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                 // Output all characters (except for previous characters stored at beginning of buffer)
                 if (!_writeToNull)
                 {
-<# if (WriterType == RawTextWriterType.Utf8) {
-#>                    if (_bufPos - 1 > 0)
+<# if (WriterType == RawTextWriterType.Utf8) { #>
+                    if (_bufPos - 1 > 0)
                     {
                         Debug.Assert(_stream != null);
                         await _stream.WriteAsync(_bufBytes.AsMemory(1, _bufPos - 1)).ConfigureAwait(false);
-                    }<#
-} else {
-#>                    Debug.Assert(_stream != null || _writer != null);
+                    }
+<# } else { #>
+                    Debug.Assert(_stream != null || _writer != null);
 
                     if (_stream != null)
                     {
@@ -656,8 +657,8 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                             // Write text to TextWriter
                             await _writer.WriteAsync(<#= BufferName #>.AsMemory(1, _bufPos - 1)).ConfigureAwait(false);
                         }
-                    }<#
-} #>
+                    }
+<# } #>
                 }
             }
             catch
@@ -671,8 +672,8 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                 // Move last buffer character to the beginning of the buffer (so that previous character can always be determined)
                 <#= BufferName #>[0] = <#= BufferName #>[_bufPos - 1];
 
-<# if (WriterType == RawTextWriterType.Utf8) {
-#>                if (IsSurrogateByte(_bufBytes[0]))
+<# if (WriterType == RawTextWriterType.Utf8) { #>
+                if (IsSurrogateByte(_bufBytes[0]))
                 {
                     // Last character was the first byte in a surrogate encoding, so move last three
                     // bytes of encoding to the beginning of the buffer.
@@ -680,6 +681,7 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                     _bufBytes[2] = _bufBytes[_bufPos + 1];
                     _bufBytes[3] = _bufBytes[_bufPos + 2];
                 }
+
 <# } #>
                 // Reset buffer position
                 _textPos = (_textPos == _bufPos) ? 1 : 0;
@@ -690,6 +692,7 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                                    // close an empty element or in CDATA section detection of double ]; _BUFFER[0] will always be 0
             }
         }
+
 <# if (WriterType == RawTextWriterType.Encoded) { #>
         private async Task EncodeCharsAsync(int startOffset, int endOffset, bool writeAllToStream)
         {
@@ -737,6 +740,7 @@ if (WriterType == RawTextWriterType.Encoded) { #>
 
             return Task.CompletedTask;
         }
+
 <# } #>
         // Serialize text that is part of an attribute value.  The '&', '<', '>', and '"' characters
         // are entitized.
@@ -756,12 +760,13 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                     {
                         pDstEnd = pDstBegin + _bufLen;
                     }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                     while (pDst < pDstEnd && (_xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch <= 0x7F))
 <# } else { #>
                     while (pDst < pDstEnd && _xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)))
-<# }
-#>                    {
+<# } #>
+                    {
                         *pDst = (<#= BufferType #>)ch;
                         pDst++;
                         pSrc++;
@@ -945,12 +950,13 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                     {
                         pDstEnd = pDstBegin + _bufLen;
                     }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                     while (pDst < pDstEnd && (_xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch <= 0x7F))
 <# } else { #>
                     while (pDst < pDstEnd && _xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)))
-<# }
-#>                    {
+<# } #>
+                    {
                         *pDst = (<#= BufferType #>)ch;
                         pDst++;
                         pSrc++;
@@ -1171,12 +1177,13 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                     {
                         pDstEnd = pDstBegin + _bufLen;
                     }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                     while (pDst < pDstEnd && ((ch = *pSrc) <= 0x7F))
 <# } else { #>
                     while (pDst < pDstEnd && ((ch = *pSrc) < XmlCharType.SurHighStart))
-<# }
-#>                    {
+<# } #>
+                    {
                         pSrc++;
                         *pDst = (<#= BufferType #>)ch;
                         pDst++;
@@ -1331,12 +1338,13 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                     {
                         pDstEnd = pDstBegin + _bufLen;
                     }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                     while (pDst < pDstEnd && (_xmlCharType.IsTextChar((char)(ch = *pSrc)) && ch <= 0x7F))
 <# } else { #>
                     while (pDst < pDstEnd && _xmlCharType.IsTextChar((char)(ch = *pSrc)))
-<# }
-#>                    {
+<# } #>
+                    {
                         *pDst = (<#= BufferType #>)ch;
                         pDst++;
                         pSrc++;
@@ -1518,12 +1526,13 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                         {
                             pDstEnd = pDstBegin + _bufLen;
                         }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                         while (pDst < pDstEnd && (_xmlCharType.IsTextChar((char)(ch = *pSrc)) && ch != stopChar && ch <= 0x7F))
 <# } else { #>
                         while (pDst < pDstEnd && (_xmlCharType.IsTextChar((char)(ch = *pSrc)) && ch != stopChar))
-<# }
-#>                        {
+<# } #>
+                        {
                             *pDst = (<#= BufferType #>)ch;
                             pDst++;
                             pSrc++;
@@ -1693,12 +1702,13 @@ if (WriterType == RawTextWriterType.Encoded) { #>
                         {
                             pDstEnd = pDstBegin + _bufLen;
                         }
+
 <# if (WriterType == RawTextWriterType.Utf8) { #>
                         while (pDst < pDstEnd && (_xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch != ']' && ch <= 0x7F))
 <# } else { #>
                         while (pDst < pDstEnd && (_xmlCharType.IsAttributeValueChar((char)(ch = *pSrc)) && ch != ']'))
-<# }
-#>                        {
+<# } #>
+                        {
                             *pDst = (<#= BufferType #>)ch;
                             pDst++;
                             pSrc++;
index ab14fcb..f3c2f18 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Diagnostics;
index fe8091c..5cd1605 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Diagnostics;
index 8c8e8a0..310d9de 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Diagnostics;
 using System.Globalization;
index e1f7f65..0a1868f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Text;
 using System.Security;
index 843be88..b0a11c4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Diagnostics;
 using System.Globalization;
index 2ea0a32..9e9bce5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // An enumeration for the xml:space scope used in XmlReader and XmlWriter.
index 97b9bbb..3325ddc 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Diagnostics;
index b79b54e..c10ddc9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Diagnostics;
index e0b1b5c..a613b1c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index 4859829..38e8705 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index bb66e40..74836c7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     internal partial class XmlTextReaderImpl
index 32c82f7..7927d28 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Text;
 using System.Xml.Schema;
index ad012c1..d4ef750 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index 635ec41..b44ef13 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index a9a0b3a..8662b03 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index a50f7da..2438b59 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index e536c26..53133d7 100644 (file)
@@ -4,6 +4,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify XmlRawTextWriterGenerator.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Xml;
index cbc86ea..8d165f7 100644 (file)
@@ -4,6 +4,7 @@
 // WARNING: This file is generated and should not be modified directly.
 // Instead, modify XmlRawTextWriterGeneratorAsync.ttinclude
 
+#nullable disable
 using System;
 using System.IO;
 using System.Xml;
index a3911c8..1daa6a6 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index 239b854..ab27891 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index 3b91761..9064713 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index 738ff3c..ea82f53 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index 75248f3..3657f95 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Threading.Tasks;
 
 using System;
index 09ab727..8111707 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Text;
 using System.Diagnostics;
index 9b70772..36b3375 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Text;
 using System.Diagnostics;
index 62636bd..4d9060a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Xml.Schema;
index c98404e..e2e8267 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Xml.Schema;
index 3f334dc..60bdc9b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml.Schema;
 using System.Collections;
index 46c2d67..e727010 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Xml.Schema;
index 90c8487..6542efb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index 703d0e1..2a8b334 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Threading.Tasks;
 
 using System;
index 5cde9f0..ec42b41 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.IO;
index 119604e..72a424a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Text;
 using System.Xml.Schema;
index 9abcb81..50123ab 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Text;
 using System.Xml.Schema;
index 09f0615..10e2003 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Text;
 using System.Xml.Schema;
index 652fdf7..2446621 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Text;
 using System.Xml.Schema;
index 7a4a89c..31a1264 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     using System.Diagnostics;
index a7c1c2d..68085ba 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Text;
 using System.Collections;
index c9c16dd..166c50f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 5019c9b..3bcd7a3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 6e18795..748f0c3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Xml.Schema;
index 4a0ffa3..11c01d4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     using System.Xml.XPath;
index 24e11bd..b29fea0 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml.Schema;
 using System.Xml.XPath;
index b2fd07d..fa5ab07 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
index 86f65d6..41c1e6d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index f5d7f61..7cf6740 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
 using System.Text;
index 463b966..fc211c1 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 
 namespace System.Xml
index 865f5b1..d696646 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 
 namespace System.Xml
index d9ea593..ae34a6e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index 4544ca7..dc21a3f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
 using System.IO;
index a254bee..34b22cc 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index ae03454..e0a26aa 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index ab166f9..4d468eb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.Schema;
 
index 9697b49..daa4156 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Text;
 
index 6001600..b103dcf 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml.Schema;
 using System.Xml.XPath;
index 02211d6..6401227 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Diagnostics;
 
index 636bae9..88a4051 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // Represents a parsed or unparsed entity in the XML document.
index 59d7c59..150e85f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 
 namespace System.Xml
index 59c2540..1cf0a0c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // Specifies the type of node change
index 5dfbecc..395c4ef 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // Provides methods for performing operations that are independent of any
index 41ae463..41a7e41 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // Gets the node immediately preceding or following this node.
index 05e2848..75145a1 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Diagnostics;
 using System.Globalization;
index 504245a..0cd270a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     using System.Text;
index a574034..cb217eb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Collections.Generic;
 using System.Diagnostics;
index 54b0c64..bfaf118 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 
 namespace System.Xml
index c31e084..8bd2cbe 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Collections;
index d89ed2f..09a6964 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     public class XmlNodeChangedEventArgs : EventArgs
index d106cea..b63ac81 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     public delegate void XmlNodeChangedEventHandler(object sender, XmlNodeChangedEventArgs e);
index 0565f52..96cb909 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 
 namespace System.Xml
index b3a255c..705ad12 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     using System;
index 79ed84c..9519c94 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     using System;
index 89e36be..1934541 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
 using System.Xml.XPath;
index dd9995d..fb58b8f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index db45335..788c2e2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
 using System.Xml.XPath;
index 205d1d8..a98cd60 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     internal class XmlUnspecifiedAttribute : XmlAttribute
index 7f9509c..5113a48 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
 using System.Xml.XPath;
index adcaef0..a749748 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 
index d216ac1..d910341 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Reflection;
 
 
index b9cb6fc..7ba3e31 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 
 namespace System.Xml
index 5469cbc..9cf3e91 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.ComponentModel;
index b5f4495..53e587c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     public interface IHasXmlNode
index e2345eb..87246bb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     public interface IXmlLineInfo
index 30a394f..960b6a0 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index c8cc321..09018fc 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     internal struct LineInfo
index 8454065..b10c97c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 #if MTNAMETABLE
 using System;
 using System.IO;
index 84773ce..1457591 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Runtime.InteropServices;
 
 namespace System.Xml
index 926704d..d5064ea 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 
 namespace System.Xml
index 60ff023..4023e97 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Resolvers
 {
     //
index e09c29c..de8e7d4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Xml;
 using System.Net;
index 244d587..97fc6c3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Xml;
 using System.Threading.Tasks;
index 7fefb7a..277e704 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.XPath;
index 8004a18..eb87b34 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Diagnostics;
index 13d9e72..8f27d8d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 17a51af..e70092b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.IO;
index 96feed5..d389ff7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Text;
index 5d26910..207a67d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index e9fea68..7370dd1 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Text;
index dcb1e96..0ddc7db 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index 75afce3..e2ce468 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index f757e3d..29310bc 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index ba85152..782e502 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index 266df4e..f9b1eeb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index a385ee2..720a7ca 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index d90bd76..5f53c75 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index 076ebc9..6f4cab4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml;
 using System.Collections;
 
index e31f255..ad7d1cc 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Xml;
index 27c09dd..e9ba54d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Resources;
index 5f58397..2114b9e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 967afd5..0a43ac6 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index fc1144c..be4c755 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index f0294f9..550495e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index b469a12..df43302 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Diagnostics;
index b2b846d..7bfdca2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     internal abstract class SchemaBuilder
index 6db2721..26f8fcb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index e9b1a0d..81a3e9f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 89aee3e..bf96ba0 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections.Generic;
index e749d91..b07b2fe 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index 2ad9bb2..a3810d9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index 0a220ff..afd5c78 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Diagnostics;
index 932365f..3093c55 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 2721d21..9c3b905 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index acaeeae..bb114f3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index a95f98b..98b63e3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 84a55a6..2bd0d13 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     internal enum SchemaType
index 1f93fff..5eb7352 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     /// <summary>
index 216a4c5..1e0aca3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     public delegate void ValidationEventHandler(object? sender, ValidationEventArgs e);
index 181dff8..c786025 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index a02ed35..35d4110 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.IO;
index a5df534..bbbffb4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.IO;
index 6985881..0ba7f5a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 5cb2335..309fb8f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.IO;
index 061fe26..8067646 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index f85effb..54e9676 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 0a89c9e..d15371f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 1996c07..dee86d0 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.ComponentModel;
index 070351c..48775d8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 7e6da55..b886ee7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 0f8fe5f..d1cc422 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.ComponentModel;
 using System.Diagnostics.CodeAnalysis;
index 9cbe29e..36c56f3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 98a4a88..873bcd6 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index b9d5a8b..b762bae 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 707de03..fd646d9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index 6f7aebc..f22e0a4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     public sealed class XmlSchemaCompilationSettings
index 62af58c..bc9f4a6 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 3e48e3c..efbbc73 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 0189a8e..0b38279 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 8681f53..0b82c43 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.ComponentModel;
 using System.Diagnostics.CodeAnalysis;
 using System.Xml.Serialization;
index 426c639..2e264d9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index d0cd16d..ed13b55 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 083b9dc..057952d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 7df3f9b..17e79cb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     public enum XmlSchemaContentType
index 277ed58..31fb39e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Diagnostics;
 using System.ComponentModel;
index f0fcb63..a30441e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index ff8e255..c032d78 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 58c6816..7e88413 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.ComponentModel;
 using System.Xml.Serialization;
 using System.Diagnostics;
index 22eabef..eb6e6dd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index e17824f..bfeca6e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 520d23c..b359ae5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.ComponentModel;
index 531b872..13dcac0 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index dcc63f2..823b063 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 4d6cd34..9678c85 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index d85759e..b69998b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 48f95ca..9b29480 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 0891fd6..d4d0821 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 40621c7..3809e49 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 5069a94..b4f7290 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml;
 using System.Collections;
 
index 5573b48..6b48aa3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 550ae80..74c1cbb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Diagnostics;
index f953ff9..3db82f2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 9d81500..21abf94 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index cb2cf27..926b9ee 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 15de67a..bb1196f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 0b49797..9b989f7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index b6e433a..cdbe017 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Collections;
 using System.Threading;
index 6418f6c..504b82a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index c574586..01fb7ad 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index bf9048c..f4b5ba9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index abae95c..62fe61a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 44eb1e4..6de1aa0 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     public abstract class XmlSchemaSimpleTypeContent : XmlSchemaAnnotated
index a4a4a64..4ae0dbe 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 908e7c3..a00192d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 0857ee1..72ac95e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 16e87a4..645d77e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index b3a10c4..48a6c31 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.ComponentModel;
 using System.Diagnostics.CodeAnalysis;
index ac5eb8b..94c9d97 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Xml.Serialization;
index 993aa85..a3742ab 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Text;
index 5b993c8..fc36e86 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index b27c7b6..75acccf 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     public enum XmlSchemaValidity
index a97967f..6e2bf63 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     //UE Atention
index b4c304a..f438013 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     // NOTE: Absolute numbering is utilized in DtdParser. -HelenaK
index b77c2d4..07d30ea 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     public enum XmlTypeCode
index 8c08611..e8855cf 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Text;
index 930387e..08c6d66 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Xml.XPath;
index 74449d9..fb362b6 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Collections;
 using System.Diagnostics;
index 74ad3bb..717bc20 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index 6cbb857..454d7f8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System;
index 2191857..ed95d66 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Schema
 {
     using System.Collections;
index 42fbe3a..6f7ad17 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 22bbca0..2ae83d3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 2393f70..0b4240a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Text;
 using System.Collections;
index 66f28c8..ebbac5e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 86d3ffa..622d0fd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Reflection;
 using System.Reflection.Emit;
 using System.Collections;
index 5de0d1b..bbf1968 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Reflection;
index bad80f2..c841409 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization.Configuration
 {
     using System;
index 868c60c..1a83cd5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics.CodeAnalysis;
 using System.Security;
 using System.Reflection;
index e2d444a..afa8dfe 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Xml;
index 685485f..4e1acb1 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Xml;
index 6af8429..cba6418 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 9a67c0d..c5069e4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Reflection;
index 9d0010e..d8ecf30 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index f7f43ad..604e61c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Xml;
index 4eb47af..81fa7b2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 
 namespace System.Xml.Serialization
index e39e7bf..3de8841 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Collections.Concurrent;
 using System.Collections.Generic;
index 5258ec2..7ad693f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index c3ef906..2df97cb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index f4b469f..6468146 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 5ba74b7..d1922c1 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index f9fb5d7..1725163 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Reflection;
index 0d57c97..8f7faee 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 98975be..4fc30e7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 23c86a4..0185584 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 2fdd91d..23c6971 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 1c41a6b..1b66ac7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index bc1ef88..2878eeb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Reflection;
index afeb107..4623bf5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index b816a34..778fb01 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index ff16ce4..967218a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Diagnostics;
index e980e75..ccdd174 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index bde6ff0..f84d014 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 0273975..db19176 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index b57cbff..a34d6ac 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml.Schema;
 
index 8c146c1..d58e05a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics.CodeAnalysis;
 using System.Xml.Schema;
index ee37964..bd57b34 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index dec726f..ebad8fd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics.CodeAnalysis;
 using System.Xml.Schema;
index b3bd0d9..c6f836b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics.CodeAnalysis;
 using System.Xml.Schema;
index dceec59..88ebed3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index a0b8eb7..37db81c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics.CodeAnalysis;
 using System.Xml.Schema;
index 115a07e..56f0d8b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Reflection;
index 6c1e487..f8fbd5e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 982badd..e29a96c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml.Schema;
 using System.Reflection;
index a809fb7..a5bfbed 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics.CodeAnalysis;
 using System.Xml.Schema;
index 9239256..ff016f0 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 340c393..066a0a4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 
 namespace System.Xml.Serialization
index 6d1fd60..690d02b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 
 namespace System.Xml.Serialization
index 7993b40..06d2027 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 
 namespace System.Xml.Serialization
index 93d6a0c..2f28a38 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.ComponentModel;
 using System.Globalization;
index 6abcd9c..7445e73 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Reflection;
 using System;
 
index 21fbe9a..c10126b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Reflection;
 using System;
 using System.Text;
index 8f0bf64..c4578a0 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml.Schema;
 
index 3fd048f..30035fe 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Reflection;
index e7f3326..d713fbd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml.Serialization;
 
index 9caa200..039d97f 100644 (file)
@@ -5,7 +5,6 @@
 // </copyright>
 //------------------------------------------------------------------------------
 
-#nullable enable
 using System;
 using System.Diagnostics.CodeAnalysis;
 using System.Xml.Schema;
index 2066255..839ddc1 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index a4b64f5..c8bdea5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 36095d9..2874c44 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index e0e3f2c..78ea35d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Collections;
index 3e8d6f2..605cc23 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Linq;
index 8cd499f..4874478 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index fe01766..933a045 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 828104e..0935a40 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 872dcbf..31c149a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 50a1632..ba8ad5e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index e907ffc..605656d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index a017863..678cdc2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Reflection;
index 77490df..c85a8e8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 35cf451..e2dba58 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Reflection;
index 5670184..864f3d8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.Reflection;
index 5a7c671..4a24276 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index aad49a4..c76ce95 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics.CodeAnalysis;
 
index de40838..5843c35 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics.CodeAnalysis;
 
index fbc74d4..87c003d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Reflection;
 using System;
 
index 719eab1..e60231d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System;
index 2ec21b8..2a7cbbc 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.IO;
index c45f0b7..365707c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Serialization
 {
     using System.IO;
index d95186a..ef896be 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml.XPath;
 using System.Diagnostics;
index 30154d4..c751b02 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.XPath
 {
     public interface IXPathNavigable
index e507888..6e449d4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index 0ffc538..77990da 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index eea9f6f..8670833 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml;
 using System.Xml.XPath;
index d29b580..36c0bcb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index bdc4cc2..132d902 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml;
 using System.Xml.XPath;
index 2174615..4cf058b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml;
 using System.Xml.XPath;
index 2fab357..2ae24d5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Xml;
index a01d88d..82bbf2c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Xml.XPath;
index 6dcaae2..c84daf9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml;
 using System.Xml.XPath;
index c200c46..04a8b91 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Xml;
index 3a9d201..d3f59aa 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 4637938..08af210 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace MS.Internal.Xml.XPath
 {
     internal sealed class ClonableStack<T> : System.Collections.Generic.List<T>
index 736a815..fb5390e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Diagnostics;
index 1f463a4..2fd0cac 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 2c28961..451e9ea 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Xml.XPath;
index 413da81..3f2ee1b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 1b0d657..f0d58f6 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index f2f56f6..72416ec 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index ebfd1a7..c222d54 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 4645ba2..b829ef3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Xml.XPath;
index e0840ef..11ecec1 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 53eaf5a..ee3256a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml;
 using System.Xml.XPath;
index a579d60..e66266c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Xml.XPath;
 using StackNav = MS.Internal.Xml.XPath.ClonableStack<System.Xml.XPath.XPathNavigator>;
index 48a998c..db94d2f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index f70c9a5..241911c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index c1c0e0d..4b81578 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Xml.XPath;
 
index 405319d..e626920 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index de71354..de01719 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index f5b43b9..e207949 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 1bf9010..00056a7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml;
 using System.Xml.XPath;
index adb9d0b..9123f14 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index 53f556d..1e1b0d9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml;
 using System.Xml.XPath;
index 81c661d..a629749 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml;
 using System.Xml.XPath;
index 0d44a9b..bb27cca 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index 8cd1bd7..07a96cf 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml;
 using System.Xml.XPath;
 using System.Xml.Xsl;
index 3cf4ae1..ca970b8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Xml;
index eeb5775..854232d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml;
 using System.Xml.XPath;
index edde392..ae30994 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index ff8172d..8519449 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Globalization;
 using System.Xml;
index 2a79a96..6dd69c8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index 7661973..80fc288 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 17762b4..6db2488 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Xml.XPath;
index 818ab40..83f449e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 using StackNav = MS.Internal.Xml.XPath.ClonableStack<System.Xml.XPath.XPathNavigator>;
index cfb402c..3d08b72 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index efda195..d45bae2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index ed06c29..d884100 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 116b295..7d65497 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 5e9303f..505bc9e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 96eeb32..51dff75 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 3ea556f..5394bd6 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index d7684f6..c3f1846 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Xml.XPath;
index 8cb5615..654e86d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Xml.XPath;
index 8915032..45eb4bc 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 74678d2..cce5d13 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Xml;
index 621b4e0..d5b07d5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 0487aa7..8f8255b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml;
 using System.Xml.XPath;
 
index 2bb0944..f7d35dd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index cf15bfd..996b35e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml.XPath;
 
index 3fdeb2e..1db0512 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index f0e1542..65a0e9b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index bd6b5a0..c58f744 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 437cd19..22f24f6 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace MS.Internal.Xml.XPath
 {
     using System;
index 8c75360..5c08a2b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index 5477ab1..f5482e9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Globalization;
index 1431765..e710cf3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 8fa0b67..dd83e8b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.XPath;
 
 namespace MS.Internal.Xml.XPath
index 7311ec4..67cdd88 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index e54f875..82b173a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using MS.Internal.Xml.Cache;
 using System.Collections.Generic;
 using System.Diagnostics;
index af0c9d0..3b1a9fe 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Resources;
 using System.Runtime.Serialization;
index f9b5e4c..447610c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using MS.Internal.Xml.XPath;
 using System.Collections;
 
index abe7141..6af68b0 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml.Schema;
 
 namespace System.Xml.XPath
index 48399c0..82fcb44 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.XPath
 {
     public enum XPathNamespaceScope
index 288f8d5..f7c86f7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.ComponentModel;
 using System.IO;
 using System.Collections;
index b79cc67..2e4a259 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using MS.Internal.Xml.Cache;
 using System.Collections;
 
index 1b8a06a..94c1dce 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 using System.Xml.Schema;
 using System.Collections;
index d9573be..b875078 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Diagnostics;
 
index e23fcd9..a700888 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.XPath
 {
     public enum XPathNodeType
index 82cfb9d..8d26ecd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.IO;
 using System.Threading;
index 1252d6a..eb74150 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 
index e04ebb6..ff81f21 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Text;
 using System.Globalization;
 using System.Xml.Schema;
index 226d0bc..2e35677 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Net;
index 8d320d5..87b3da7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Net;
index 3361da0..e65a280 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Text;
 using System.Diagnostics;
 
index 7339ba0..dde7f76 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Resources;
 using System.Text;
index 03e2b5c..e566ff2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     /// <devdoc>
index e742f6e..062b581 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     /// <devdoc>
index 9529ee9..9e209bd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Diagnostics;
index e353e1b..5b1bbbd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     public enum XmlNodeOrder
index 74bd699..5fb688d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     /// <devdoc>
index 62a34ff..ea93f83 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Net;
 
 namespace System.Xml
index d74ee28..6ff8642 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Diagnostics;
 
index e4ef0a1..a392256 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     /// <summary>
index c9c6ff7..357cf3c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     using System;
index a21b4b6..21504ff 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Threading.Tasks;
 
 namespace System.Xml
index 05398fa..330feb5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml
 {
     using System.Net;
index 61a06da..59ffe4b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Threading.Tasks;
 
 namespace System.Xml
index 7f1fcbf..641e584 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Threading;
 using System.Net;
 using System.Net.Cache;
index f054e23..62125f9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Runtime.Versioning;
 using System.Threading.Tasks;
 
index 8a45cc4..705e01d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl
 {
     internal interface ISourceLineInfo
index 1b770d4..8130d26 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Globalization;
 using System.Xml;
index d69b985..5e6ef24 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 93904a4..4c3965f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Xml.Xsl.Qil;
index e0d47c7..c9e25cd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Collections.Generic;
 using System.Diagnostics;
index 99cdf8f..600070b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Xml.Xsl.Qil;
index b691af9..e1580e2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Reflection;
 using System.Xml.Xsl.Qil;
index 98ac3ae..730054b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Xml.Schema;
index f6b4307..9d19348 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Diagnostics;
 using System.Reflection;
index d7c7c6d..c00eb27 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.IlGen
 {
     /// <summary>
index fbdcd37..e02dc3d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
index 7a8e981..c93e81f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.IO;
 using System.Security;
index a3cbb3e..a7ead38 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.IO;
index ce44e31..75f0973 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Xml.XPath;
index e9e85c1..d2996cf 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Xml.Schema;
index 893ec61..626bd17 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 
index a71c32a..4776565 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index 2a3a6ec..daff069 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Diagnostics;
index 2865ecc..e379522 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index cca5111..99ad88b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Xml.Schema;
index 74378ec..5b74398 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Xml.Xsl.Runtime;
 
index 695fc45..4c6fe3f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 
 namespace System.Xml.Xsl.Qil
index d00e226..b6dd25a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index 48326db..0530d06 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Xml.Schema;
index b8e07b1..dcc36df 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Reflection;
index a558cc2..dfa0953 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 
index 3a9247e..2a1475b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 
index 171fde2..d105ee9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index c86dbb2..b418c83 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
index cfe90c4..b3f2f29 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Diagnostics;
index a51f759..413c51a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
index cd2cca2..9551e91 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 3875444..c9973ae 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.Qil
 {
     /// <summary>An enumeration of all the possible QilExpression node types.</summary>
index 085962b..258dcb1 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 
index 5d655c1..c5862ec 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Reflection;
index 8e82891..5701f5b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Diagnostics.CodeAnalysis;
 
index 107a645..dd269f7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
index a7799c4..087a035 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 0151966..84b4cba 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 
index cab41ac..073e8a2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 
index 4976176..8dafd52 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 
index e5c7776..adcc09d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Xml.Schema;
index 86ddd1f..7879377 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index ac947b5..2b187a3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 151ab3f..112cf60 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index 8134de7..41c3a57 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Diagnostics;
 
index 88ac380..561d837 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics.CodeAnalysis;
index 9188c3e..7e2b54f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 952080b..fc9635c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 
 namespace System.Xml.Xsl.Qil
index 54c03ea..35f4d7d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Diagnostics;
index 18bf706..a1f129b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
 using System.IO;
index d95ef69..9bd4a85 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Collections.Generic;
 using System.Diagnostics;
index 215ebd7..44ec849 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Xml;
 using System.Xml.XPath;
index 7d2e72e..ee3d213 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Diagnostics;
 using System.Globalization;
 using System.Text;
index e4928bb..f595922 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index e6fc6e3..bb82c33 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Collections.Generic;
 using System.Xml.XPath;
index 773f229..9b44a9f 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Diagnostics;
 using System.Reflection;
 
index dd6d4ca..ffe223e 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Diagnostics;
 using System.Text;
 
index ef7039f..8ca6025 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Threading;
 using System.IO;
index 7e92b43..7001187 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Xml;
 using System.Xml.XPath;
index 16f0e8c..15eab78 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Xml;
 using System.Xml.XPath;
index 1a5395a..f2f61ca 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index 15ae373..07a9798 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.ComponentModel;
 using System.Diagnostics;
 using System.Xml.XPath;
index 81aee63..20cccb8 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Xml;
 using System.Collections;
index 8fbee96..358ef43 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Diagnostics;
 
 namespace System.Xml.Xsl.Runtime
index 6fb4a83..65dabdf 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Xml;
 using System.Diagnostics;
index 68ebc46..0a4560d 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 namespace System.Xml.Xsl.Runtime
 {
     using System;
index c01679e..419d570 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Globalization;
 
 namespace System.Xml.Xsl.Runtime
index 40e0e7e..577beae 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Globalization;
 
 namespace System.Xml.Xsl.Runtime
index 21bd19a..224747d 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Collections;
 using System.ComponentModel;
 using System.Diagnostics;
index 2f73e34..1707aa9 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Collections.Generic;
 using System.Xml;
index 7fd7f34..86fcbb3 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.Diagnostics;
index 92c355f..840a8bf 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Collections.Generic;
 using System.IO;
index 8c01f8f..4964e53 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Xml;
 using System.Xml.XPath;
index 9de706c..ee3756d 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Xml;
 using System.Xml.XPath;
 using System.Diagnostics;
index 477f626..08b530c 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Xml;
 using System.Xml.XPath;
index 6238639..c2d3b2e 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 5c786ce..83387e0 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.Diagnostics;
index 6efecc8..0575e80 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.IO;
 using System.Xml;
index a7d417f..b43ecb5 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index b01534e..0cd1738 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.IO;
index 7d76fb5..df64624 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.IO;
 using System.Xml;
index 04ea89f..873f52b 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;
index a4828b4..fe94d26 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Diagnostics;
 using System.Globalization;
index 4ccdbc0..29fc8c7 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Diagnostics;
 using System.Globalization;
index c028f23..4673961 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Collections;
 using System.Collections.Generic;
 using System.Diagnostics;
index e8bfa38..26b9022 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index cf5118c..309cd5c 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.IO;
 using System.Text;
 using System.Reflection;
index 6fe9478..ccf04eb 100644 (file)
@@ -1,6 +1,7 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
+#nullable disable
 using System.Collections.Specialized;
 using System.Collections.Generic;
 using System.Diagnostics;
index d979a4c..d0b14c7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 
 namespace System.Xml.Xsl
index 201217f..c079cba 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Xml.Xsl.Qil;
 
index a8c33e4..e44b4dd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections.Generic;
 using System.Diagnostics.CodeAnalysis;
index 18977c9..ee3a212 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XPath
 {
     // Order is important - we use them as an index in QilAxis & AxisMask arrays
index dff13ae..0be02ff 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
index 42470c8..6b2e675 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Runtime.Serialization;
 using System.Text;
 
index f863ef7..f1b073d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 #if DontUse
 // XPathContext is not used any more but comments in it and Replacer visitor may be used to
 // optimize code XSLT generates on last().
index adc8c37..58765d2 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XPath
 {
     // order is importent. We are using them as an index in OperatorGroup & QilOperator & XPathOperatorToQilNodeType arrays
index d707ad5..5208144 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 
index 09e635a..879e8d9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.Schema;
 using System.Xml.Xsl.Qil;
index e6509bf..12dc838 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 // <spec>http://www.w3.org/TR/xpath#exprlex</spec>
 //------------------------------------------------------------------------------
 
index 6649cbb..bb0adf5 100644 (file)
@@ -4,7 +4,6 @@
 // <spec>http://webdata/xml/specs/querylowlevel.xml</spec>
 //------------------------------------------------------------------------------
 
-#nullable enable
 using System.Collections;
 using System.Diagnostics;
 using System.IO;
index e20f724..16d19e0 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Collections.Generic;
 using System.Diagnostics;
index 8822642..4101c0f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 
 namespace System.Xml.Xsl
index 66363cf..b140fc5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Xml;
 using System.Xml.Schema;
index 012b94f..bf46143 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.IO;
 
index 3005c4d..b8a9c6c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.IO;
index b844184..ce571c9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Globalization;
index a239d96..37dbe19 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Globalization;
 using System.Resources;
index dcf1418..1105a03 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Collections.ObjectModel;
 using System.Diagnostics;
@@ -140,7 +139,7 @@ namespace System.Xml.Xsl.Xslt
         {
             for (int idx = 0; idx <= 2; idx++)
             {
-                sheet.WhitespaceRules[idx].Reverse();
+                sheet.WhitespaceRules![idx].Reverse();
                 this.WhitespaceRules.AddRange(sheet.WhitespaceRules[idx]);
             }
             sheet.WhitespaceRules = null;
@@ -148,7 +147,7 @@ namespace System.Xml.Xsl.Xslt
 
         private void MergeAttributeSets(Stylesheet sheet)
         {
-            foreach (QilName attSetName in sheet.AttributeSets.Keys)
+            foreach (QilName attSetName in sheet.AttributeSets!.Keys)
             {
                 AttributeSet? attSet;
                 if (!this.AttributeSets.TryGetValue(attSetName, out attSet))
@@ -166,7 +165,7 @@ namespace System.Xml.Xsl.Xslt
 
         private void MergeGlobalVarPars(Stylesheet sheet)
         {
-            foreach (VarPar var in sheet.GlobalVarPars)
+            foreach (VarPar var in sheet.GlobalVarPars!)
             {
                 Debug.Assert(var.NodeType == XslNodeType.Variable || var.NodeType == XslNodeType.Param);
                 if (!AllGlobalVarPars.ContainsKey(var.Name!))
index 4a313c9..fa10fd9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 
 namespace System.Xml.Xsl.Xslt
index 315f81a..b32692c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
 
index 632349d..cce691b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Xml.Xsl.XPath;
index 4565dfa..19d2fb8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl
 {
     internal interface IErrorHelper
index d7d4c02..6e15fc5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Xml.Xsl.Qil;
index 81cd01c..b7a110a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Collections;
index 9bcc76b..7574183 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Xml;
 
 namespace System.Xml.Xsl.Xslt
index ca2cde3..3e16e60 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
@@ -358,7 +357,7 @@ namespace System.Xml.Xsl.Xslt
         private void CollectPatternsInternal(Stylesheet sheet, QilName mode)
         {
             // Process imported stylesheets in the straight order, since their order will be reverted in the result tree
-            foreach (Stylesheet import in sheet.Imports)
+            foreach (Stylesheet import in sheet.Imports!)
             {
                 CollectPatternsInternal(import, mode);
             }
@@ -374,7 +373,7 @@ namespace System.Xml.Xsl.Xslt
         public void CollectPatterns(StylesheetLevel sheet, QilName mode)
         {
             Clear();
-            foreach (Stylesheet import in sheet.Imports)
+            foreach (Stylesheet import in sheet.Imports!)
             {
                 CollectPatternsInternal(import, mode);
             }
index 9dde09d..ffcbe6d 100644 (file)
@@ -1,13 +1,11 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Diagnostics;
 using System.Xml;
 using System.Collections;
 
-#nullable enable
 namespace System.Xml.Xsl.Xslt
 {
     internal class OutputScopeManager
index a799185..410a8f7 100644 (file)
@@ -5,7 +5,6 @@
 // <spec>http://www.w3.org/TR/xslt20/</spec>
 //------------------------------------------------------------------------------
 
-#nullable enable
 using System.Collections;
 using System.Collections.Generic;
 using System.Collections.Specialized;
@@ -157,7 +156,7 @@ namespace System.Xml.Xsl.Xslt
             try
             {
                 CompileKeys();
-                CompileAndSortMatches(compiler.Root!.Imports[0]);
+                CompileAndSortMatches(compiler.Root!.Imports![0]);
                 PrecompileProtoTemplatesHeaders();
                 CompileGlobalVariables();
 
@@ -2164,7 +2163,7 @@ namespace System.Xml.Xsl.Xslt
 
             sheet.SortTemplateMatches();
 
-            foreach (Stylesheet import in sheet.Imports)
+            foreach (Stylesheet import in sheet.Imports!)
             {
                 CompileAndSortMatches(import);
             }
index 8181f99..38d543b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Xml.Schema;
index 80ded33..32c71b7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml;
 using System.Text;
index 479af7a..1b09d41 100644 (file)
@@ -4,7 +4,6 @@
 // <spec>http://devdiv/Documents/Whidbey/CLR/CurrentSpecs/BCL/CodeDom%20Activation.doc</spec>
 //------------------------------------------------------------------------------
 
-#nullable enable
 using System.Collections.Generic;
 using System.Collections.Specialized;
 using System.Configuration;
index 26ecb7c..011862c 100644 (file)
@@ -10,7 +10,7 @@ namespace System.Xml.Xsl.Xslt
 {
     internal class StylesheetLevel
     {
-        public Stylesheet[] Imports;
+        public Stylesheet[]? Imports;
 
         // If (this is Stylesheet) {
         //   ModeFlags and ApplyFunctions are abblout apply-imports
@@ -27,10 +27,10 @@ namespace System.Xml.Xsl.Xslt
     {
         private readonly Compiler _compiler;
         public List<Uri> ImportHrefs = new List<Uri>();
-        public List<XslNode> GlobalVarPars = new List<XslNode>();
+        public List<XslNode>? GlobalVarPars = new List<XslNode>();
 
         // xsl:attribute-set/@name -> AttributeSet
-        public Dictionary<QilName, AttributeSet> AttributeSets = new Dictionary<QilName, AttributeSet>();
+        public Dictionary<QilName, AttributeSet>? AttributeSets = new Dictionary<QilName, AttributeSet>();
 
         private readonly int _importPrecedence;
         private int _orderNumber;
@@ -40,7 +40,7 @@ namespace System.Xml.Xsl.Xslt
             WhitespaceRules[1] - rules with default priority -0.25
             WhitespaceRules[2] - rules with default priority -0.5
         */
-        public List<WhitespaceRule>[] WhitespaceRules = new List<WhitespaceRule>[3];
+        public List<WhitespaceRule>[]? WhitespaceRules = new List<WhitespaceRule>[3];
 
         public List<Template> Templates = new List<Template>();  // Templates defined on this level. Empty for RootLevel.
         // xsl:template/@mode -> list of @match'es
@@ -48,7 +48,7 @@ namespace System.Xml.Xsl.Xslt
 
         public void AddTemplateMatch(Template template, QilLoop filter)
         {
-            List<TemplateMatch> matchesForMode;
+            List<TemplateMatch>? matchesForMode;
             if (!TemplateMatches.TryGetValue(template.Mode, out matchesForMode))
             {
                 matchesForMode = TemplateMatches[template.Mode] = new List<TemplateMatch>();
@@ -69,25 +69,25 @@ namespace System.Xml.Xsl.Xslt
             _compiler = compiler;
             _importPrecedence = importPrecedence;
 
-            WhitespaceRules[0] = new List<WhitespaceRule>();
-            WhitespaceRules[1] = new List<WhitespaceRule>();
-            WhitespaceRules[2] = new List<WhitespaceRule>();
+            WhitespaceRules![0] = new List<WhitespaceRule>();
+            WhitespaceRules![1] = new List<WhitespaceRule>();
+            WhitespaceRules![2] = new List<WhitespaceRule>();
         }
 
         public int ImportPrecedence { get { return _importPrecedence; } }
 
         public void AddWhitespaceRule(int index, WhitespaceRule rule)
         {
-            WhitespaceRules[index].Add(rule);
+            WhitespaceRules![index].Add(rule);
         }
 
         public bool AddVarPar(VarPar var)
         {
             Debug.Assert(var.NodeType == XslNodeType.Variable || var.NodeType == XslNodeType.Param);
-            Debug.Assert(var.Name.NamespaceUri != null, "Name must be resolved in XsltLoader");
-            foreach (XslNode prevVar in GlobalVarPars)
+            Debug.Assert(var.Name!.NamespaceUri != null, "Name must be resolved in XsltLoader");
+            foreach (XslNode prevVar in GlobalVarPars!)
             {
-                if (prevVar.Name.Equals(var.Name))
+                if (prevVar.Name!.Equals(var.Name))
                 {
                     // [ERR XT0630] It is a static error if a stylesheet contains more than one binding
                     // of a global variable with the same name and same import precedence, unless it also
@@ -110,7 +110,7 @@ namespace System.Xml.Xsl.Xslt
 
             if (template.Name != null)
             {
-                Template old;
+                Template? old;
                 if (!_compiler.NamedTemplates.TryGetValue(template.Name, out old))
                 {
                     _compiler.NamedTemplates[template.Name] = template;
index 52e5f32..663a96b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Collections.Generic;
 using System.Diagnostics;
index 16d2983..2f9c06b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Xml;
index 1e99401..6c6b091 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Text;
 using System.Collections.Generic;
 using System.Collections.ObjectModel;
index 9dbcdcc..2f0ffad 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
@@ -215,7 +214,7 @@ namespace System.Xml.Xsl.Xslt
             // dependency graph with fwdApplyImportsGraph
             foreach (KeyValuePair<Template, Stylesheet> pair in _fwdApplyImportsGraph!)
             {
-                foreach (Stylesheet import in pair.Value.Imports)
+                foreach (Stylesheet import in pair.Value.Imports!)
                 {
                     AddImportDependencies(import, /*focusDonor:*/pair.Key);
                 }
@@ -244,7 +243,7 @@ namespace System.Xml.Xsl.Xslt
 
             // We can do this only after all flags were propagated.
             // Otherwise we can miss case when flag comes to template from attribute-set
-            FillModeFlags(compiler.Root!.ModeFlags, compiler.Root.Imports[0]);
+            FillModeFlags(compiler.Root!.ModeFlags, compiler.Root.Imports![0]);
 
             return result;
         }
@@ -258,7 +257,7 @@ namespace System.Xml.Xsl.Xslt
                     _revCall0Graph!.AddEdge(tmpl, focusDonor);
                 }
             }
-            foreach (Stylesheet import in sheet.Imports)
+            foreach (Stylesheet import in sheet.Imports!)
             {
                 AddImportDependencies(import, focusDonor);
             }
@@ -267,7 +266,7 @@ namespace System.Xml.Xsl.Xslt
         private void FillModeFlags(Dictionary<QilName, XslFlags> parentModeFlags, Stylesheet sheet)
         {
             // Recursion: Process all imports to calculate ModeFlags for apply-import in this sheet
-            foreach (Stylesheet import in sheet.Imports)
+            foreach (Stylesheet import in sheet.Imports!)
             {
                 FillModeFlags(sheet.ModeFlags, import);
             }
index fef4aae..efbcca3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl
 {
     [Flags]
index bfefe8f..12188eb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics.CodeAnalysis;
 
 namespace System.Xml.Xsl.Xslt
index 997c2e4..0f26d97 100644 (file)
@@ -3,7 +3,6 @@
 
 //#define XSLT2
 
-#nullable enable
 using System.Collections;
 using System.Collections.Generic;
 using System.Collections.Specialized;
@@ -1058,7 +1057,7 @@ namespace System.Xml.Xsl.Xslt
             Debug.Assert(setName != null, "Required attribute always != null");
 
             AttributeSet? set;
-            if (!_curStylesheet!.AttributeSets.TryGetValue(setName, out set))
+            if (!_curStylesheet!.AttributeSets!.TryGetValue(setName, out set))
             {
                 set = f.AttributeSet(setName);
                 // First definition for setName within this stylesheet
index 934a71c..909d0f8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Xml.Schema;
index 24c2336..104d62a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     internal abstract class Action
index 685a850..083e1e7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System.Collections;
index b7dfa7e..c63f6e5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 89f1a81..52709c6 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 73b665b..1dc8f92 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 52c4686..037e44f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index f2e5a67..fc78f2a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index b7ebafc..d2475c3 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 9bf924c..9c3adf6 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 86bd6d8..1cfb4a7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 917ca1e..aa1fb7d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index bf8f946..274ac1b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 4c0cf62..0b80fcc 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 5b0de30..e0357b4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 59ea6c8..ce03686 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System;
 using System.Collections;
 using System.Collections.Generic;
index 7e5144e..aaa95f7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index f953ad3..8e838cd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 73f0ab9..4868b2c 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 56a88d2..3234ebc 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index ab0a33e..843091d 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index ddf5fac..b7f3df9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 6e371ad..5aa6fb7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 5a22716..02668f7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index ad24dfa..77a9718 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index e48600b..d32b9d4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 072ced3..1e831a9 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 0dacc9e..566f077 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 73433a1..e367d52 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 7e5c5ce..7ae3808 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 5026d2d..cd1ad87 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     internal interface IRecordOutput
index 7d6f949..b067309 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index eaf401a..93601bb 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 6f10f1f..25acce1 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 2d6232a..4dd3497 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 4588fc9..57002bc 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 43ea679..a709a4e 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index e9e6f67..e149f01 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 87fc34e..c4471b4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index 392f94b..26b54dd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Text;
 using System.Globalization;
index 9f17f20..813f364 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index d711fd8..c978824 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 7859745..12cb000 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 8dd92a0..e5dfaec 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 1baccfa..04837fd 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 35ed241..8ef9fb4 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System.Collections;
index 93b9842..17b5375 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Globalization;
 using System.Diagnostics;
 using System.IO;
index fbb81a1..5e5c646 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Text;
 using System.Xml.XPath;
index 9c81fbf..d1b684a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index a02e4a6..e999683 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Text;
 using System.Collections;
index 6cb7cee..b03f305 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 0f24879..0002796 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index f1c1a06..1856dae 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 479e724..189e275 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 44b9cf8..b05f02a 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 8e107b3..a716f37 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 35f657e..8715505 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index f0f5b62..4567404 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 1ec0085..bd912f7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index e283f63..dc8ed73 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index bbb4bc2..da293c5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.IO;
 
 namespace System.Xml.Xsl.XsltOld
index 7e36a4b..bed1a25 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index b94645b..a494005 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index b1150c3..b38b9e8 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index e9560fa..719b0c7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 3b5c155..3703e24 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Xml.XPath;
 
index d091b5e..d9a28c1 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 0fa095e..ae66561 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics;
 using System.Collections;
 
index a739871..faf99ef 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System.Diagnostics;
index 9c19dd4..9490751 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld.Debugger
 {
     using System.Xml.XPath;
index 80f9f8d..ee25af7 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 43a3f67..f17f23b 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl.XsltOld
 {
     using System;
index 2290477..df1a022 100644 (file)
@@ -4,7 +4,6 @@
 // <spec>http://webdata/xml/specs/XslCompiledTransform.xml</spec>
 //------------------------------------------------------------------------------
 
-#nullable enable
 using System.CodeDom.Compiler;
 using System.Diagnostics;
 using System.Diagnostics.CodeAnalysis;
index 92886ee..28cda9f 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 namespace System.Xml.Xsl
 {
     using System.Collections.Generic;
index 276e0c2..34ed4a5 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 
 namespace System.Xml.Xsl
index d987b6a..bd2b095 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Collections;
 using System.Xml.XPath;
 
index 159272a..3136e02 100644 (file)
@@ -1,7 +1,6 @@
 // Licensed to the .NET Foundation under one or more agreements.
 // The .NET Foundation licenses this file to you under the MIT license.
 
-#nullable enable
 using System.Diagnostics.CodeAnalysis;
 using System.Globalization;
 using System.Resources;
index 7d90f90..f2cb3a4 100644 (file)
@@ -4,7 +4,6 @@
 // <spec>http://webdata/xml/specs/XslCompiledTransform.xml</spec>
 //------------------------------------------------------------------------------
 
-#nullable enable
 namespace System.Xml.Xsl
 {
     public sealed class XsltSettings