TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
softairhk
NA
115
0
How to change the Month into string as Jan, Feb, Mar, ..., but not 1, 2, 3...?
Oct 29 2003 12:40 AM
Hello! How to change the Month into string as Jan, Feb, Mar, ..., but not 1, 2, 3...? Please give me reply asap. Thanks! public string TDate() { string DateInString=""; int Day=DateTime.Now.Day; int Month=DateTime.Now.Month; int Year=DateTime.Now.Year; DateInString=Day.ToString(); DateInString+="-" + Month.ToString(); DateInString+="-" + Year.ToString(); return DateInString; }
Reply
Answers (
5
)
regex multiline text between tags
Now to add percentage change string on progressBar1?