示例#1
0
 /// <summary>
 /// Convert the specified <strong>ISO 8601</strong> string to an instance of <see cref="EssentialsTime"/>.
 /// </summary>
 /// <param name="value">The <strong>ISO 8601</strong> string to be converted.</param>
 /// <returns>An instance of <see cref="EssentialsTime"/>.</returns>
 public static EssentialsTime FromIso8601(string value)
 {
     return(new EssentialsTime(TimeUtils.Iso8601ToDateTimeOffset(value)));
 }