コード例 #1
0
 /// <summary>
 ///     Determines if the current algorithm and the <paramref name="other"/> algorithm represent the same
 ///     cryptographic hashing algorithm.
 /// </summary>
 /// <param name="other"></param>
 /// <returns>
 ///     <c>true</c> if this algorithm represent the same cryptographic hashing algorithm as
 ///     <paramref name="other"/>; otherwise <c>false</c>.
 /// </returns>
 protected bool Equals(CryptoHashAlgorithm other)
 {
     return(string.Equals(MachineName, other.MachineName));
 }
コード例 #2
0
 protected bool Equals(CryptoHashAlgorithm other)
 {
     return string.Equals(MachineName, other.MachineName);
 }