Advertisement
Alexandr0v

Untitled

Mar 18th, 2025
268
0
18 hours
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.19 KB | Source Code | 0 0
  1. var namespaces = new XmlSerializerNamespaces();
  2. namespaces.Add("", "");
  3.  
  4. using (var sw= new StringWriter())
  5. {
  6.     serializer.Serialize(sw, guides, namespaces);
  7.     xmlResult = sw.ToString();
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement