Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8394671
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T20:07:05+00:00 2026-06-09T20:07:05+00:00

I have this extension method to disable a timer after a given interval. Is

  • 0

I have this extension method to disable a timer after a given interval. Is there a guarantee that GC won’t destroy the disableTimer variable (which is local variable in this method)? or is there a justification why this code will work in an hour from now.

timer.DisableAfter(1.Hours()) :

    public static void DisableAfter(this Timer timer, TimeSpan timeSpan)
    {
        var disableTimer = new Timer(timeSpan.TotalMilliseconds)
            {
                AutoReset = false,
            };

        disableTimer.Elapsed += (sender, e) =>
            {
                timer.Stop();
                disableTimer.Stop();
            };
        disableTimer.Start();
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T20:07:06+00:00Added an answer on June 9, 2026 at 8:07 pm

    There’s no garauntee it’ll be garbage collected or not, but if you don’t keep a reference to the timer it’s certainly qualifies for collection.

    See this MSDN page for Timer, go down to the first example source block, read the text above and obviously the source block itself… it’s actually all about Timer’s being garbage collected.

    http://msdn.microsoft.com/en-us/library/system.timers.timer.aspx

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this logic in an extension method that creates a paging wrapper: int
The CollectionViewSource.GetDefaultView() method is not in Silverlight 3. In WPF I have this extension
I have a question that's somewhat of an extension of this thread . I
I have this extension method for my BusinessObject class: public static class Extensions {
I have this extension method public static string SerializeObject<T>(this T value) { var serializer
I have a layout with an extension method that takes a list of menu
So I have an extension method for the Html.CheckBoxFor() method that enables the user
I have this extension method I created and it returns a string of all
I have this extension method I use in WinForms but would like to know
I am having an issue using BinaryFormatter.Serialize. I have this generic extension method to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.