Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
526 views
in Technique[技术] by (71.8m points)

c# - When is it OK to use an XML file to save information?

What reason could there be for using an XML to save information?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There could be lots of reasons: like any other file format, it has pros and cons:

Pros:

  • .Net natively supports serializing your objects to xml, and deserializing them back again.
  • It is more readable and descriptive to the human eye than a binary format or JSON
  • It is easily validated against a schema to ensure it is in the correct format.
  • It can be loaded and parsed with other tools.
  • It is easily interchangeable with other platforms/languages, unlike the native .Net binary serialization format
  • It can be transformed, and you can run xpath over it.

Cons:

  • It is more verbose than either the native .Net binary serialization format, or JSON
  • It doesn't store type information about the classes that were deserialized into xml, whereas a the native binary format does.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...