CSharpTest.Net
Value Property
See Also  Example Send Feedback Download Help File
CSharpTest.Net.Library Assembly > CSharpTest.Net.IO Namespace > Crc64 Structure : Value Property

Glossary Item Box

Returns the computed CRC64 value

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Value As Long
C# 
public long Value {get;}

Example

Library/Library.Test/TestCrc64.cs

C#Copy Code
Crc64 all = new Crc64(new byte[] { 0x2, 0x3, 0x4, 0x5, 0x6 });
Crc64 crc = new Crc64();
Assert.AreEqual(0, crc.Value);
crc.Add(new byte[] { 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8 }, 1, 5);
Assert.AreEqual(all.Value, crc.Value);
VB.NETCopy Code
Dim all As New Crc64(New Byte() {&H2, &H3, &H4, &H5, &H6})
Dim crc As New Crc64()
Assert.AreEqual(0, crc.Value)
crc.Add(New Byte() {&H1, &H2, &H3, &H4, &H5, &H6, _
    &H7, &H8}, 1, 5)
Assert.AreEqual(all.Value, crc.Value)

Requirements

Target Platforms: Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7

See Also

Generated with Document! X 2011 by Innovasys