コード例 #1
0
 public static byte[] CalculateClassHash(this HashAlgorithm algorithm, Type value)
 {
     algorithm.Initialize();
     algorithm.AppendClass(value, true);
     return(algorithm.Hash);
 }