Xor(Byte[],Int32,Int32,Byte[],Int32,Int32) Method
See Also 
SourceCode.Security.Cryptography Namespace > CryptoFactory Class > Xor Method : Xor(Byte[],Int32,Int32,Byte[],Int32,Int32) Method



a
aStart
aCount
b
bStart
bCount

Glossary Item Box

Syntax

Visual Basic (Declaration)  
<ExtensionAttribute()>
Public Overloads Shared Function Xor( _
   ByVal a() As Byte, _
   ByVal aStart As Integer, _
   ByVal aCount As Integer, _
   ByVal b() As Byte, _
   ByVal bStart As Integer, _
   ByVal bCount As Integer _
) As Boolean
Visual Basic (Usage) Copy Code
Dim a() As Byte
Dim aStart As Integer
Dim aCount As Integer
Dim b() As Byte
Dim bStart As Integer
Dim bCount As Integer
Dim value As Boolean
 
value = CryptoFactory.Xor(a, aStart, aCount, b, bStart, bCount)
C#  
[Extension()]
public static bool Xor( 
   byte[] a,
   int aStart,
   int aCount,
   byte[] b,
   int bStart,
   int bCount
)
C++/CLI  
[Extension()]
public:
static bool Xor( 
   array<byte>^ a,
   int aStart,
   int aCount,
   array<byte>^ b,
   int bStart,
   int bCount
) 

Parameters

a
aStart
aCount
b
bStart
bCount

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also