.net 利用 CultureInfo 动态设置 货币和日期的显示方式
http://www.zu14.cn/2008/12/12/net_cultureinfo/.NET 里面,利用CultureInfo,动态改变程序的region,同时显示多个CultureInfo 下的格式,是非常easy的事了。
http://www.agoit.com/bbs/$c.gif
<div style="padding-bottom: 0px;" class="wp_codebox"> decimal c = 12345.98M; DateTime dt = DateTime.Now; CultureInfo us = new CultureInfo("en-US"); this.textBox4.Text = dt.ToString("D", us); this.textBox6.Text = c.ToString("C", us); CultureInfo cn = new CultureInfo("zh-CN"); this.textBox1.Text = dt.ToString("D", cn); this.textBox3.Text = c.ToString("C", cn);
页:
[1]