I have three fields: string Title, byte[] Body, and byte[] Data, from which I want to calculate a single hash as a check to be sure th
string Title
byte[] Body
byte[] Data
There is also solution in .Net Standard and .Net Core using IncrementalHash
IncrementalHash md5 = IncrementalHash.Create(HashAlgorithmName.MD5) // For each block: md5.AppendData(block); // Get the hash code byte[] hash = md5.GetHashAndReset();