private string getMD5String(string PlainText)
{
System.Security.Cryptography.MD5 md5 = System.Security.Cryptography.MD5.Create();
...
private string getMD5String(string PlainText)
{
System.Security.Cryptography.MD5 md5 = System.Security.Cryptography.MD5.Create();
...
This is a simple example of...