/// <summary>
 /// Changes the pattern of this SimpleDateFormat to the specified pattern
 /// which uses localized pattern characters.
 /// </summary>
 ///
 /// <param name="template">the localized pattern</param>
 public void ApplyLocalizedPattern(String template)
 {
     icuFormat.ApplyLocalizedPattern(template);
     pattern = icuFormat.ToPattern();
 }