Exemplo n.º 1
0
 public unsafe void TestUntypedInterface()
 {
     fixed(byte *srcPtr = SmallLettersAToEBytes)
     {
         ExpectedString = HashInstance.ComputeBytes(SmallLettersAToEBytes).ToString();
         ActualString   = HashInstance.ComputeUntyped(srcPtr, SmallLettersAToEBytes.Length)
                          .ToString();
         AssertAreEqual(ExpectedString, ActualString);
     }
 }