Example #1
0
 public void SetToNumericConstant(SizeSufix sizeU)
 {
     this.sizeSufix = sizeU;
     type           = TokenType.NumericConstant;
     content        = content.Replace('.', ',');
     if (sizeU.Equals(SizeSufix.K))
     {
         content = content.Substring(0, content.Length - 1);
     }
     else
     {
         content = content.Substring(0, content.Length - 2);
     }
 }