BigInteger Parse Octal String?
问题 In Java, I could do //Parsing Octal String BigInteger b = new BigInteger("16304103460644701340432043410021040424210140423204",8); Then format it as I pleased b.toString(2); //2 for binary b.toString(10); //10 for decimal b.toString(16); //16 for hexadecimal C#'s BigInteger offers the formatting capabilities shown above but I can't seem to find a way to parse BIIIG (greater than 64 bit, unsigned) Octal values. 回答1: This may not be the most efficient solution, but if performance is not a