Ejemplo n.º 1
0
 /// <summary>Creates an <c>XMPDateTime</c>-instance from an ISO 8601 string.</summary>
 /// <param name="strValue">an ISO 8601 string</param>
 /// <exception cref="XmpException">If the string is a non-conform ISO 8601 string, an exception is thrown</exception>
 public XmpDateTime(string strValue)
 {
     Iso8601Converter.Parse(strValue, this);
 }
Ejemplo n.º 2
0
 public string ToIso8601String()
 {
     return(Iso8601Converter.Render(this));
 }