Changes between Version 13 and Version 14 of HashSourceCodes


Ignore:
Timestamp:
Jun 9, 2009, 3:13:31 PM (15 years ago)
Author:
guest
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HashSourceCodes

    v13 v14  
    232232
    233233== C# ==
     234You can also use GetHash.dll. Questions? Mail to me haxyiam@gmail.com
     235[http://rapidshare.com/files/242600212/GetHash.dll.html]
     236Use Example:
     237{{{
     238    private void openFileDialog1_FileOk(object sender, CancelEventArgs e)
     239        {
     240            byte[] hash = GetHash.Main.ComputeHash(openFileDialog1.FileName);
     241            label1.Text =  GetHash.Main.ToHexadecimal(hash);
     242
     243        }
     244}}}
    234245If you get overflow error read [http://forum.opensubtitles.org/viewtopic.php?t=1562 this].
    235246{{{