Little question out of annoyment with Visual Studio 2010. Whenever I write lines like this:
<%: Html.LabelFor(model => model.AccountName) %>
And save the file, some lines (some, not all of them, haven't figured out the logic behind this yet) will be converted to this:
<%: Html.LabelFor(model => model.AccountName)%>
Quite subtle difference, but I was wondering which magic happens here. Anyone got an idea? And perhaps an idea how to switch this magic off?
Thanks!