When calling a C# Method from within another C# method, does the called method finish first or are they async?

As title, 

If I have a server method:

Item anItem = inn.getItemById("anItem", "1");

anItem.apply("second_method");

.... other processing

Does the "other processing" execute right away, or does it wait for anItem.apply() to finish?

Thank you,

Frank

Parents Reply Children