Posts by João Almeida • 59 points
1 post
-
3
votes1
answer478
viewsQ: Converting Java code to C#
I would like a help to convert the following code in Java to C#. public static long convertStringToBitboard(String Binary) { if (Binary.charAt(0)=='0') { return Long.parseLong(Binary, 2); } else {…