c# ,VS 2011 ,Silverlight 4.
when RaisePropertyChanged("...") actually gets executed A, B, or C (see below)
if I have a C# method
public void OnSave()
{
RaisePropertyChanged("my property");
(A) is it executed here or (B) after the method is finished (or (C) we cannot know)?
bla,bla,bla (more code)
}
or (B) Here?