Exemple #1
0
 /// <summary>
 ///     Compute a MD5 hash value of the input string value
 /// </summary>
 /// <param name="value">input value</param>
 /// <returns>the result md5 of the input string value</returns>
 // ReSharper disable InconsistentNaming
 public static String ToMD5HashCode(this String value)
 // ReSharper restore InconsistentNaming
 {
     return(HashCodeHelper.ToMD5HashCode(value));
 }