A
Aaron
[Test] //<<<<<<<<<<<<this
public void TestEncrypt()
{
string data = "This fox ran up the hill.";
string encrypted = Crypt.Encrypt(data);
Assertion.Assert(!data.Equals(encrypted));
}
why does some method have [***] above them? what does it do?
Thanks,
Aaron
public void TestEncrypt()
{
string data = "This fox ran up the hill.";
string encrypted = Crypt.Encrypt(data);
Assertion.Assert(!data.Equals(encrypted));
}
why does some method have [***] above them? what does it do?
Thanks,
Aaron