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
You have to combine them all in a single variable and then calculate the MD5 Hash. I don't see any shortcut there.
You see, most of solutions proposed here just try either to run multiple commands on the same line ("one liners") or implement something to "under the hood" combine your fields and then Hash...