WEB开发网
开发学院WEB开发ASP.NET c#中的常用ToString()方法 阅读

c#中的常用ToString()方法

 2012-10-12 11:14:14 来源:WEB开发网   
核心提示:Enumerations Specifier Type g Default (Flag names if available, otherwise decimal)
Enumerations
Specifier Type
g Default (Flag names if available, otherwise decimal)
f Flags always
d Integer always
x Eight digit hex.
Some Useful Examples
String.Format("{0:$#,##0.00;($#,##0.00);Zero}", value);

This will output "$1,240.00" if passed 1243.50. It will output the same format but in parentheses if the number is negative, and will output the string "Zero" if the number is zero. 
String.Format("{0:(###) ###-####}", 18005551212); 

This will output "(800) 555-1212". 

变量.ToString() 

字符型转换 转为字符串 
12345.ToString("n"); //生成 12,345.00 
12345.ToString("C"); //生成 ¥12,345.00 
12345.ToString("e"); //生成 1.234500e+004 
12345.ToString("f4"); //生成 12345.0000 
12345.ToString("x"); //生成 3039 (16进制) 

12345.ToString("p"); //生成 1,234,500.00% 

上一页  1 2 3 4 5 

Tags:常用 ToString 方法

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接