Reputation: 846
I am developing a WINRT metro style application using c# and XAML. I want to use Converters in my WINRT application in so many situations. Using converters is more convenient for me, but my question is "Is there any disadvantages for using Converters , like memory usage..etc" Please clarify.
Upvotes: 3
Views: 138
Reputation: 964
Disadvantages when using converters can be:
I would try to use an MVVM architecture and get rid of most converters. Only use them for simple conversions like bool to Visibility.
Upvotes: 2