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 133977
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:31:48+00:00 2026-05-11T06:31:48+00:00

I found this question about which languages optimize tail recursion. Why C# doesn’t optimize

  • 0

I found this question about which languages optimize tail recursion. Why C# doesn’t optimize tail recursion, whenever possible?

For a concrete case, why isn’t this method optimized into a loop (Visual Studio 2008 32-bit, if that matters)?:

private static void Foo(int i) {     if (i == 1000000)         return;      if (i % 100 == 0)         Console.WriteLine(i);      Foo(i+1); } 
  • 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. 2026-05-11T06:31:49+00:00Added an answer on May 11, 2026 at 6:31 am

    JIT compilation is a tricky balancing act between not spending too much time doing the compilation phase (thus slowing down short lived applications considerably) vs. not doing enough analysis to keep the application competitive in the long term with a standard ahead-of-time compilation.

    Interestingly the NGen compilation steps are not targeted to being more aggressive in their optimizations. I suspect this is because they simply don’t want to have bugs where the behaviour is dependent on whether the JIT or NGen was responsible for the machine code.

    The CLR itself does support tail call optimization, but the language-specific compiler must know how to generate the relevant opcode and the JIT must be willing to respect it. F#’s fsc will generate the relevant opcodes (though for a simple recursion it may just convert the whole thing into a while loop directly). C#’s csc does not.

    See this blog post for some details (quite possibly now out of date given recent JIT changes). Note that the CLR changes for 4.0 the x86, x64 and ia64 will respect it.

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

Sidebar

Ask A Question

Stats

  • Questions 101k
  • Answers 101k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The Subversion Integration directly on the IDE and the Local… May 11, 2026 at 8:02 pm
  • Editorial Team
    Editorial Team added an answer Yes. You cannot create the "classic" kernel-mode drivers. However, starting… May 11, 2026 at 8:02 pm
  • Editorial Team
    Editorial Team added an answer You can call CREATE Function near the beginning of your… May 11, 2026 at 8:02 pm

Related Questions

I found this question about which languages optimize tail recursion. Why C# doesn't optimize
I'm having the exciting task of finding out about VB.NET's <> and Not operators.
I want to get smarter in AJAX, but not sure which way to go.
I've been programming in C,C++,C# and a few other languages for many years, mainly
I've got several large MFC applications here, and converting them into any other format

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.