Actually return a value

This commit is contained in:
Michael Becker 2014-06-05 10:45:20 -04:00
parent 830b880378
commit 0487b02df6

View File

@ -141,16 +141,12 @@ namespace UniversalEditor.Checksum.Modules.CRC32
/// <summary>
/// Returns the CRC32 data checksum computed so far.
/// </summary>
public long Value
public override long Value
{
get
{
return (long)crc;
}
set
{
crc = (uint)value;
}
}
/// <summary>