cpu_analyzer.ThreadSnapshot.GetMD5 C# (CSharp) 메소드

GetMD5() 공개 정적인 메소드

public static GetMD5 ( string str ) : System.Guid
str string
리턴 System.Guid
        public static Guid GetMD5(string str)
        {
            lock (md5Provider)
            {
                return new Guid(md5Provider.ComputeHash(Encoding.Unicode.GetBytes(str)));
            }
        }