c# equivalent of php’s password-verify()

using CryptSharp;
bool matches = Crypter.CheckPassword(“password goes here”, “hash goes here”);

http://stackoverflow.com/a/22616852