I have a WPF form, for some reason ONLY '&' character within string cannot be compiled with.
<TextBox>=948&showtree=1</TextBox> <!--Error due to char &-->
I have tried:<TextBox Text = @"=948&showtree=1"/>
yet, same result.
I have tried adding "!@#$%^*()_+"
it also only happens with '&'. What is so special about '&' and how to overcome this problem within xaml?
I could add it in .cs file but I want to know why did this occurred.