I noticed that when naming elements in xaml that we have two options when naming elements.
<Textbox Name="MyTextBox" />
or
<Textbox x:Name="MyOtherTextBox" />
I have seen both used in various examples and would like to know which is best so I can use it in my application. What is the difference between the two?