D
Dirk Reske
Hello,
i have following source, to be translatet into C#
for (i = 1; i < len; i++)
key = lock xor lock[i-1];
key and lock are strings
in C# xor = ^
but in c# i cannot apply the ^ operator on characters.
How can I solve this?
i have following source, to be translatet into C#
for (i = 1; i < len; i++)
key = lock xor lock[i-1];
key and lock are strings
in C# xor = ^
but in c# i cannot apply the ^ operator on characters.
How can I solve this?