XmlSerializer: 불필요한 xsi 및 xsd 네임스페이스 제거 루트 요소에 기본 네임스페이스를 쓰지 않도록 XmlSerializer를 구성하는 방법이 있습니까? 제가 얻은 것은 다음과 같습니다. 그리고 두 xmlns 선언을 모두 삭제하고 싶습니다. 중복:xmlns="…"를 얻지 않고 개체를 XML로 직렬화하는 방법?//Create our own namespaces for the output XmlSerializerNamespaces ns = new XmlSerializerNamespaces(); //Add an empty namespace and empty value ns.Add("", ""); //Create the serializer XmlSerializer slz = new XmlSeria..