本文介绍了将数字转换成月份文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的要求是,如果用户在文本框中输入 4 ,则我有一个文本框,则它应在标签上显示" April ",表示我要将数字转换为仅一个月
我该如何做到呢?

在此先感谢

My requirements is i have one text box if user enter 4 in textbox then it should be display ''April'' in label means i want to convert number into month only
how can i acheive this.

Thanks in Advance

推荐答案

private static string GetMonthName(int month)
{

DateTime date = new DateTime(2010, month, 1);
return date.ToString("MMMM");

}


DateTime strDate = New DateTime(2000, monthNum, 1); // monthNum is your input
strDate.ToString("MMMM"); // this is the month name


string strMonth = new DateTime(1900,month,01).ToString("MMMM");


这篇关于将数字转换成月份文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 01:11