天天看点

数据类型转换实例(C#)

/* 

* 数值转换为字符型方可输出 

*/

using System; 

using System.Collections.Generic; 

using System.Linq; 

using System.Text;

namespace ConsoleApplication2 

    class Program 

    { 

        static void Main(string[] args) 

        { 

            double staff1 = 1480.32; //员工1工资double类型 

            string strStaff = Convert.ToString(staff1); //转换为字符类型 

            Console.WriteLine("员工1的本月工资是:{0}元",strStaff); //将转换结果输出

            int staffall = 80; //员工的人数为整形 

            string strStaffall = Convert.ToString(staffall); //转换为字符类型 

            Console.WriteLine("公司现有员工人数是:{0}人", strStaffall); //将转换结果输出 

        } 

    } 

}

本文转自 makewong 51CTO博客,原文链接:http://blog.51cto.com/makewong/293042,如需转载请自行联系原作者