zohab Posted August 1, 2011 Share Posted August 1, 2011 Hi, I wrote windows service that will execute daily 1:30PM.DateTime.NOW() give me the date and time. I want to get time daily and excute service.In following code I am using hard coded date "8/01/2011 01:30:00 PM". Any idea how to get time daily in C#. DateTime dt = DateTime.Parse("8/01/2011 01:30:00 PM"); string s1 = dt.ToString("HH:mm"); // 07:00 // 24 hour clock // hour is always 2 digits string s2 = dt.ToString("hh:mm tt"); // 07:00 AM // 12 hour clock // hour is always 2 digits string s3 = dt.ToString("H:mm"); // 7:00 // 24 hour clock string s4 = dt.ToString("h:mm tt"); // 7:00 AM // 12 hour clock if (s4 == "01:30 PM") { // tasks to be done. } Thanks. Link to comment https://forums.phpfreaks.com/topic/243455-get-specific-time-daily-in-c/ Share on other sites More sharing options...
HanneSThEGreaT Posted October 13, 2011 Share Posted October 13, 2011 You''ll need to use DateTime.Now() to get the current date and time. Sorry, I only see this topic is old, my apologies Link to comment https://forums.phpfreaks.com/topic/243455-get-specific-time-daily-in-c/#findComment-1278906 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.