In my XAML binding in a Silverlight App, I wrote something like this:
Text="{Binding TestSomething}"
TestSomething returns a number. Now I want to make a sentence out of it, for example something like:
"We found this many XYZ results"
where XYZ is equal to that TestSomething
How can I combine string.Format with the binding above to generate the sentence that I need.