Пример #1
0
		public IcuRulesCollator(string rules)
		{
			try
			{
				this._collator = new Icu.Collation.RuleBasedCollator(LdmlCollationParser.ReplaceUnicodeEscapesForICU(rules));
			}
			catch (DllNotFoundException e)
			{
				throw new DllNotFoundException("IcuRulesCollator requires the ICU dlls to be present", e);
			}
		}
Пример #2
0
 public IcuRulesCollator(string rules)
 {
     try
     {
         this._collator = new Icu.Collation.RuleBasedCollator(LdmlCollationParser.ReplaceUnicodeEscapesForICU(rules));
     }
     catch (DllNotFoundException e)
     {
         throw new DllNotFoundException("IcuRulesCollator requires the ICU dlls to be present", e);
     }
 }