Is there a simple way to print all Messenger.Default.Send() to debug? Don't want to override them.
相关问题
- Pass custom debug information to Microsoft bot fra
- How do I identify what code is generating “ '&
- An error is occur when we use navigation to move o
- ObservableCollection in ViewModel is not updated w
- Monodevelop: `Waiting for debugger`
相关文章
- Working with hmacsha256 in windows store app
- How do I get to see DbgPrint output from my kernel
- WP7 Alert dialog
- Best way to implement MVVM bindings (View <-> V
- Advanced profiling is unavailable for the selected
- Can't Inspect Variables When Debugging .NET As
- What is the difference between glibc's MALLOC_
- Embedding a program's source code into its bin
Yep, so i ended up with own wrapper around Messenger. No smart solutions, just straightforward wrapping. In case, anybody else would need it:
Create a function in an abstract ViewModel that everyone inherits from, which uses a define or global variable to determine if it debugs as well/instead. This could also be if you're running as Debug or Release.