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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T23:33:45+00:00 2026-05-15T23:33:45+00:00

Syntactically I see that they loop indefinitely until a break statement is reached, but

  • 0

Syntactically I see that they loop indefinitely until a break statement is reached, but are they compiled to the same thing? Is the for slightly faster because it doesn’t have a condition to check? Aside from code readability, is there even a difference?

  • 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-05-15T23:33:45+00:00Added an answer on May 15, 2026 at 11:33 pm

    Given this input:

    private static void ForLoop()
    {
        int n = 0;
        for (; ; )
        {
            Console.WriteLine(n++);
        }
    }
    
    private static void WhileLoop()
    {
        int n = 0;
        while (true)
        {
            Console.WriteLine(n++);
        }
    }
    

    …you get this output:

    .method private hidebysig static void  ForLoop() cil managed
    {
      // Code size       14 (0xe)
      .maxstack  3
      .locals init ([0] int32 n)
      IL_0000:  ldc.i4.0
      IL_0001:  stloc.0
      IL_0002:  ldloc.0
      IL_0003:  dup
      IL_0004:  ldc.i4.1
      IL_0005:  add
      IL_0006:  stloc.0
      IL_0007:  call       void [mscorlib]System.Console::WriteLine(int32)
      IL_000c:  br.s       IL_0002
    } // end of method Program::ForLoop
    
    
    .method private hidebysig static void  WhileLoop() cil managed
    {
      // Code size       14 (0xe)
      .maxstack  3
      .locals init ([0] int32 n)
      IL_0000:  ldc.i4.0
      IL_0001:  stloc.0
      IL_0002:  ldloc.0
      IL_0003:  dup
      IL_0004:  ldc.i4.1
      IL_0005:  add
      IL_0006:  stloc.0
      IL_0007:  call       void [mscorlib]System.Console::WriteLine(int32)
      IL_000c:  br.s       IL_0002
    } // end of method Program::WhileLoop
    

    Remarkably similar, I would say (identical, even).

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

Sidebar

Related Questions

I know how they are different syntactically, and that C++ uses new, and C
Let's say I have an SQL statement that's syntactically and semantically correct so it
I realize this is syntactically bad but I figure it somewhat explains what I'm
I believe the three below are syntactically correct; but which are permitted according to
Syntactically it's superset of C. But since messages are sent and processed at runtime
In .NET is there a function that tests if a string is syntactically a
Is this statement correct syntactically: $query = SELECT matric_no session course_name FROM main_table session
My company maintains a domain-specific language that syntactically resembles the Excel formula language. We're
If x is a value then are the following just syntactically different but effectively
Just curious if it is syntactically possible to do something like this: static (void)

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.