本帖最后由 civets 于 2009-11-27 13:57:57 编辑

解决方案 »

  1.   

     Decimal dec = 0.8974358974358974358974358974M;
                Decimal res = dec * 100;
                Console.WriteLine(res.ToString("0.00")); 
      

  2.   

    Decimal dec = 0.8974358974358974358974358974M;
                string str = dec.ToString().Substring(0, 6);
                dec = 100 * Convert.ToDecimal(str);
                Console.WriteLine(dec);