Exemple #1
0
 // Token: 0x060028B0 RID: 10416 RVA: 0x004488D8 File Offset: 0x00446AD8
 public bool DoubleToFormat(double f, int afterpoint = -1, bool bAfterPointShowZero = true)
 {
     if (this.FormatStringCount < this.FormatS.Length)
     {
         StringManager.DoubleToStr(this.FormatS[this.FormatStringCount], f, afterpoint, bAfterPointShowZero);
         this.FormatStringCount++;
         return(true);
     }
     return(false);
 }