Converting java code in C#. Operator error -
Converting java code in C#. Operator error -
i'm working on 1 project. converting java code in c#. how convert next java code in c#.
int h4; int e = h4; int[] w = new int[80]; e += 1518500249 + (a << 5 | >> 27) + (b & c | (b^ 0xffffffff) & d) + w[0];
show compiler error @ line 4 "cannot implicitly convert type long int".
how changing type of variables int
long
?
long h4; long e = h4; long[] w = new long[80]; e += 1518500249 + (a << 5 | >> 27) + (b & c | (b ^ 0xffffffff) & d) + w[0];
c# java operators
Comments
Post a Comment