Which of the .NET included hashing algorithms are suitable for password hashing?
I think it's not really a meaningful Class name, but I do think it is included in the .NET framework. According to multiple sources, Rfc2898DeriveBytes is actually a PBKDF2 implementation. MSDN says so as well.
See Why do I need to use the Rfc2898DeriveBytes class (in .NET) instead of directly using the password as a key or IV? and PBKDF2 implementation in C# with Rfc2898DeriveBytes
for example.
There is also:
http://bcrypt.codeplex.com/ (bcrypt)
http://www.zer7.com/software.php?page=cryptsharp (scrypt, etc)