// Token: 0x0600015E RID: 350 RVA: 0x000066F0 File Offset: 0x000048F0
 private static string GetUnitValue(long number, bool isOrdinal)
 {
     checked
     {
         if (!isOrdinal)
         {
             return(EnglishNumberToWordsConverter.UnitsMap[(int)((IntPtr)number)]);
         }
         string exceptionString;
         if (EnglishNumberToWordsConverter.ExceptionNumbersToWords(number, out exceptionString))
         {
             return(exceptionString);
         }
         return(EnglishNumberToWordsConverter.UnitsMap[(int)((IntPtr)number)] + "th");
     }
 }