/// <seealso cref="Com.Adobe.Xmp.XMPDateTime.GetISO8601String()"/>
 public virtual string GetISO8601String()
 {
     return(ISO8601Converter.Render(this));
 }
 /// <summary>Creates an <code>XMPDateTime</code>-instance from an ISO 8601 string.</summary>
 /// <param name="strValue">an ISO 8601 string</param>
 /// <exception cref="Com.Adobe.Xmp.XMPException">If the string is a non-conform ISO 8601 string, an exception is thrown</exception>
 public XMPDateTimeImpl(string strValue)
 {
     ISO8601Converter.Parse(strValue, this);
 }