System.Security.Cryptography.MD5.Create C# (CSharp) Method

Create() public static method

public static Create ( ) : MD5
return MD5
        public static new MD5 Create()
        {
            return new Implementation();
        }

Same methods

MD5::Create ( String algName ) : MD5

Usage Example

 public static byte[] MD5(byte[] bytes)
 {
     using (var provider = MD5provider.Create())
     {
         return(provider.ComputeHash(bytes));
     }
 }
All Usage Examples Of System.Security.Cryptography.MD5::Create