Lyn.IntelliString is C# language useful string helper method collection.
Install-Package Lyn.IntelliString
- Add Hash Method
- Add RandomHash Method
using Lyn.IntelliString;
namespace Lyn.IntelliString.UnitTest
{
[TestClass]
public class IntelliStringTest
{
[TestMethod]
public void TestHash()
{
var testString = "Intelli String Test";
Assert.IsTrue(testString.Hash() == IntelliString.HashString("Intelli String Test"));
}
}
}