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

Popular posts from this blog

web services - java.lang.NoClassDefFoundError: Could not initialize class net.sf.cglib.proxy.Enhancer -

Accessing MATLAB's unicode strings from C -

javascript - mongodb won't find my schema method in nested container -