aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Extensions/BaseExtensions.cs
diff options
context:
space:
mode:
authorebr11 Eric Reed spam <ebr11 Eric Reed spam@reedsplace.com>2012-09-17 16:24:01 -0400
committerebr11 Eric Reed spam <ebr11 Eric Reed spam@reedsplace.com>2012-09-17 16:24:01 -0400
commitf385fe2f201c6727b04acb4b8b57f2b9fc086dd4 (patch)
tree39e0870bd19769d31d5330944145fecc48118c22 /MediaBrowser.Common/Extensions/BaseExtensions.cs
parentfe427bc7f4f1a709c43c8ecb035b07325ed710b9 (diff)
parent946c0e8256d61d5084efdd2196eef455fa13b89b (diff)
Merge with default
Diffstat (limited to 'MediaBrowser.Common/Extensions/BaseExtensions.cs')
-rw-r--r--MediaBrowser.Common/Extensions/BaseExtensions.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Extensions/BaseExtensions.cs b/MediaBrowser.Common/Extensions/BaseExtensions.cs
new file mode 100644
index 000000000..89cfbecad
--- /dev/null
+++ b/MediaBrowser.Common/Extensions/BaseExtensions.cs
@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Security.Cryptography;
+
+namespace MediaBrowser.Common.Extensions
+{
+ public static class BaseExtensions
+ {
+ static MD5CryptoServiceProvider md5Provider = new MD5CryptoServiceProvider();
+
+ public static Guid GetMD5(this string str)
+ {
+ lock (md5Provider)
+ {
+ return new Guid(md5Provider.ComputeHash(Encoding.Unicode.GetBytes(str)));
+ }
+ }
+
+ public static bool ContainsStartsWith(this List<string> lst, string value)
+ {
+ foreach (var str in lst)
+ {
+ if (str.StartsWith(value, StringComparison.OrdinalIgnoreCase)) return true;
+ }
+ return false;
+ }
+ }
+}