Skip to content

8. FileHashCalculator

Destroyer edited this page Dec 13, 2021 · 1 revision

Namespace: Core.Hash

Gets the MD5 hash and all SHA types of a file.

Get Signature

  • VB
        Dim FileHash As FileHashCalculator = New FileHashCalculator(Application.ExecutablePath)
        MessageBox.Show(FileHash.MD5)
  • C#
    FileHashCalculator FileHash = new FileHashCalculator(Application.ExecutablePath);
    MessageBox.Show(FileHash.MD5);
Clone this wiki locally