Jump to content

get specific time daily in C#


zohab

Recommended Posts

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

  • 2 months later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.