Sections
Recent comments
- No longer preferred
3 years 13 weeks ago - Is this still the preferred way?
3 years 19 weeks ago - Wrong. When replacing the
3 years 44 weeks ago - Very nice
3 years 46 weeks ago - Example Application
3 years 47 weeks ago - Responsibilities
4 years 3 days ago - Menus
4 years 3 days ago - The reason that this is a
4 years 17 weeks ago - You need to explain why these
4 years 17 weeks ago - RE: I like your approach, but ...
4 years 21 weeks ago
Race condition?
Navigation.SelectedPerson in both the .When() and .Do() clauses allows the possibility that the value could be set to null on another thread in between the check and the call, resulting in a null reference exception. Is there a way to guard against this? I can call BeginInvoke when setting of the value in the other thread if necessary which should solve it in my case, but thought I'd ask if this is something you have encountered.