Skip to content

Instantly share code, notes, and snippets.

@RimuruDev
Created September 27, 2023 14:11
Show Gist options
  • Save RimuruDev/11876e21dd3bd19ec6b18c032f29ac70 to your computer and use it in GitHub Desktop.
Save RimuruDev/11876e21dd3bd19ec6b18c032f29ac70 to your computer and use it in GitHub Desktop.
public static class MatchExtension
{
public static Guid ToGuid(this string id)
{
var provider = new MD5CryptoServiceProvider();
var inputBytes = Encoding.Default.GetBytes(id);
var hasBytes = provider.ComputeHash(inputBytes);
return new Guid(hasBytes);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment