Represents an Apple property list document. Documentation on property lists can be found here. https://developer.apple.com/library/content/documentation/General/Conceptual/DevPedia-CocoaCore/PropertyList.html#//apple_ref/doc/uid/TP40008195-CH44
root | The root element of the property list document. |
version | The version of the property list document. At the moment Apple uses '1.0' for all property list files. |
PlistDocument | Creates a new property list document instance. |
Create | Create a new property list Document. |
ReadFromFile | 指定したパスのファイルからドキュメントを読み込みます。 |
ReadFromStream | TextReader からプロジェクトを読み込みます。 |
ReadFromString | 指定した文字列からドキュメントを読み込みます。 |
WriteToFile | 指定したファイルにプロジェクトの内容を書き込みます。 |
WriteToStream | ドキュメントの内容を指定の TextReader に書き込みます。 |
WriteToString | ドキュメントの内容を文字列として取得します。 |