コード例 #1
0
 public static string GetMathSuffix(this ToolsFacade facade, int _arg)
 {
     if (_arg < 1000)
     {
         return(_arg.ToString());
     }
     if (_arg < 1000000)
     {
         return(facade.GetThousandsSuffix(_arg));
     }
     return(facade.GetMillionsSuffix(_arg));
 }