Guest User

Untitled

a guest
Jun 25th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. MemoryStream fingerprintData = new MemoryStream();
  2. Template.Serialize(fingerprintData);
  3. fingerprintData.Position = 0;
  4. BinaryReader br = new BinaryReader(fingerprintData);
  5. Byte[] bytes = br.ReadBytes((Int32)fingerprintData.Length);
  6.  
  7. Template.Serialize(fingerprintData);
Add Comment
Please, Sign In to add comment