ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX Namespace / DXUtil Class / CompareMemory Method
The pointer to compare from.
The pointer to compare against.
The size in bytes to compare.

In This Topic
    CompareMemory Method
    In This Topic
    Compares two block of memory.
    Syntax
    'Declaration
     
    Public Shared Function CompareMemory( _
       ByVal from As IntPtr, _
       ByVal against As IntPtr, _
       ByVal sizeToCompare As Integer _
    ) As Boolean
    public static bool CompareMemory( 
       IntPtr from,
       IntPtr against,
       int sizeToCompare
    )

    Parameters

    from
    The pointer to compare from.
    against
    The pointer to compare against.
    sizeToCompare
    The size in bytes to compare.

    Return Value

    true if the buffers are equivalent; otherwise, false.
    See Also