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

  • SEARCH
  • Home
  • 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 7619837
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T03:47:26+00:00 2026-05-31T03:47:26+00:00

Possible Duplicate: Inline functions in C#? What is method inlining? i’ve been debugging code,

  • 0

Possible Duplicate:
Inline functions in C#?
What is method inlining?

i’ve been debugging code, and a ‘possible’ source of the issue is in a function which is marked with this code:

[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
protected virtual void PropertyHasChanged()

Reading MSDN says this: Specifies that the method cannot be inlined.

But what is ‘inlining’ a method?

EDIT:

To clarify: the PropertyHasChanged() method is called in the SET method of every property and updates (adds 1 to it) an internal object counter. When that counter > 0, the object is marked as ‘dirty’ and will be saved to the database when Save is called. When the counter = 0, the object will not be saved to the database. Now i’ve got the idea that this code sometimes is not executed (the counter is not increased) so the object won’t be saved to the database,

  • 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-31T03:47:27+00:00Added an answer on May 31, 2026 at 3:47 am

    Inlining a method/property means that the compiler takes it and replaces the calls to it with its contents (making sure correct variables etc). This is not something that is C# specific.

    This is done for performance normally.

    For example, with this method and call:

    private long Add(int x, int y)
    {
       return x + y;
    }
    
    var z = Add(x, y);
    

    The compiler may inline it as (eliminating the method in the process):

    var z = x + y;
    

    The Wikipeida article Inline expansion starts with:

    In computing, inline expansion, or inlining, is a manual or compiler optimization that replaces a function call site with the body of the callee. This optimization may improve time and space usage at runtime, at the possible cost of increasing the final size of the program (i.e. the binary file size).

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

Sidebar

Related Questions

Possible Duplicate: Including PHP functions from another file I'm building code that use function
Possible Duplicate: NSNumber retain count issue Hello, I have the following code: NSNumber *number
Possible Duplicate: Benefits of inline functions in C++? I have a confusion regarding the
Possible Duplicate: Pure virtual functions may not have an inline definition. Why? I've come
Possible Duplicate: Inline functions in C++ Modern compilers are better than programmers at deciding
Possible Duplicate: Inline functions vs Preprocessor macros Inline functions were introduced in C++ to
Possible Duplicate: Can a recursive function be inline? I think that recursive function defined
Possible Duplicate: c++ inline function? What is the the real concept of inline function.
Possible Duplicate: NAnt or MSBuild, which one to choose and when? What is the
Possible Duplicate: What Ruby IDE do you prefer? I've generally been doing stuff on

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.