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
Share on other sites

  • 2 months later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.