Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

plz see the below code :

public static string ChangePersianDate(DateTime dateTime)
{
    System.Globalization.GregorianCalendar PC = new System.Globalization.GregorianCalendar();
    PC.CalendarType = System.Globalization.GregorianCalendarTypes.USEnglish;
    return
    PC.GetYear(dateTime).ToString()
    + "/"
    + PC.GetMonth(dateTime).ToString()
    + "/"
    + PC.GetDayOfMonth(dateTime).ToString()
    + ""
    + PC.GetHour(dateTime).ToString()
    + ":"
    + PC.GetMinute(dateTime).ToString()
    + ":"
    + PC.GetSecond(dateTime).ToString()
    + " "
    ????????????????
}

how can i get a.m/p.m from that datetime?

thanks in advance

share|improve this question
6  
There are far better ways to format a DateTime than this. See msdn.microsoft.com/en-us/library/8kb3ddd4.aspx – ChrisF Oct 24 '11 at 12:01

6 Answers

up vote 18 down vote accepted

How about:

dateTime.ToString("tt");
share|improve this answer
string.Format("{0:HH:mm:ss tt}", DateTime.Now)

This should give you the string value of the time. tt should append the am/pm.

You can also look at the related topic:

C#: How do you get the current time of day?

share|improve this answer

The DateTime should always be internally in the "american" (Gregorian) calendar. So if you do

var str = dateTime.ToString(@"yyyy/MM/dd hh:mm:ss tt", new CultureInfo("en-US"));

you should get what you want in many less lines.

share|improve this answer
+ PC.GetHour(datetime) > 11 ? "pm" : "am"

For your example but there are better ways to format datetime.

share|improve this answer
thanks for answer / would u plz show the other ways – MoonLight Oct 24 '11 at 12:04
See the link that @ChrisF has given above. Basically you can use to ToString method on the datetime object and pass it a format. This way you dont call datetime.ToString mulitple times as you are doing in your code example. – Kevin Holditch Oct 24 '11 at 12:06

From: http://www.csharp-examples.net/string-format-datetime/

string.Format("{0:t tt}", datetime);  // -> "P PM"  or "A AM"
share|improve this answer

Something like bool isPM = GetHour() > 11. But if you want to format a date to a string, you shouldn't need to do this yourself. Use the date formatting functions for that.

share|improve this answer
Honestly, I wouldn't even show the isPM() method. THe only way to legitimately format DateTime objects is using the formatters. – richb01 Jul 23 '12 at 15:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.