I am writing a MultiBinding containing two bindings - each returns a bool. Using MultiBindings, you need to specify IMultiValueConverter. In my case, this converter should take two bools and return AND from them. It's really easy to write, but do I need? This is similar to the most basic MultiValueConverter, and I do not want to write it if .NET already exists.
So - is there? And if so - what is built in IMultiValueConverters?
source share