Create an xml element that has int32 values

@Hadasi 2021.4.10 includes a bunch of new (experimental at this point) json and xml nodes that might help:

  • JSONReader (Generic)
  • JSONWriter (Generic)
  • JSONToObject
  • ObjectToJSON

these work together with jsontypedef. where you need to do these manual steps:

  • write a json schema
  • use jtd-codegen to generate c# out of it
  • build that c# code into a .dll which you then reference in your document

from then you can use the above nodes.

similar for XML:

  • XMLReader (Generic)
  • XMLWriter (Generic)
  • XMLToObject
  • ObjectToXML

these work together with xsd.

2 Likes