Ana içeriğe atla

Kayıtlar

Kasım, 2022 tarihine ait yayınlar gösteriliyor

StringHelper Contains for Sqlite

  namespace SimplCommerce.Infrastructure.Helpers {     public static class StringHelper     {         public static bool Contains(this String str,                                         String substr,                                         StringComparison cmp)         {             if (substr == null)                 throw new ArgumentNullException("substring substring",                                                 " cannot be null.");             else if (!Enum.IsDefined(typeof(StringComparison), cmp)) ...