コード例 #1
0
 /// <summary>
 /// Converts a string consisting of characters of the Universe's alphabet to an equivalent number (base conversion).
 /// </summary>
 public static BigInteger TextToNumber(string text, string alphabet)
 {
     return(Universe.ArbitraryToDecimalSystem(text, alphabet));
 }