I'm reading Effective C# (Second Edition) and it talks about method inlining.
I understand the principle, but I don't see how it would work based on the 2 examples in the book. The book says:
Inlining means to substitute the body of a function for the function call.
Fair enough, so if I have a method, and its call:
public string SayHiTo(string name)
{
return "Hi " + name;
}
public void Welcome()
{
var msg = SayHiTo("Sergi");
}
the JIT compiler might (will?) inline it to:
public void Welcome()
{
var msg = "Hi " + "Sergi";
}
Now, with these two examples (verbatim from the book):
Example 1
// readonly name property
public string Name { get; private set; }
// access:
string val = Obj.Name;
Example 2
string val = "Default Name";
if(Obj != null)
val = Obj.Name;
The book mentions the code but doesn't go any further into how they might be inlined. How would the JIT compiler inline these 2 examples?