You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varcrc=CrcAlgorithm.CreateCrc16CcittFalse();// Give it some bytes to chew on - you can call this multiple times if neededcrc.Append(Encoding.ASCII.GetBytes("Hurray for cake!"));// Get the output - as a hex string, byte array or unsigned integerConsole.WriteLine(crc.ToHexString());
to-be
varcrc=CrcAlgorithm.CreateCrc16CcittFalse().Append(Encoding.ASCII.GetBytes("Hurray for cake!"));Console.WriteLine(crc.ToHexString());
The text was updated successfully, but these errors were encountered:
as-is
to-be
The text was updated successfully, but these errors were encountered: