I'm passing code from vba to c # but I can not find the keyword " To " for c #
Example:
Xl = -1208721221 Xr = -38092073
Const ROUND = 16
private m_pBox(0 To ROUND + 1) As Long
Private static Sub DecryptBlock(Xl As Long, Xr As Long)
Dim temp As Long
temp = Xr
Xr = Xl Xor m_pBox(ROUNDS + 1)
Xl = temp Xor m_pBox(ROUNDS)
End Sub
And could you also explain to me what this line of code does in VBA?