consider the flowing scenario
chequeInfo = new Check();
Messenger.Default.Register<Check>(this, (a) => this.doSomething(a));
AddNewCheck j = new AddNewCheck();
_dialogService.showDialoge(j);
Console.WriteLine("this text doesn't show up");
SpecialCustomerPayments d = new SpecialCustomerPayments();
d.chequeId = chequeInfo.Id;
d.paymentAmount = chequeInfo.value;
d.userId = 1;
....
as you can observe from code above I'm showDialog() another window in the middle of a method , I expected the flow to continue after I done with the new window , but it is not , I think I'm missing something obvious here, any help will be much appreciated
thanks in advance