I am attempting to assign the following string to a label created in XAML from the C# code-behind file: "Recall_AUX_002"
To do this, I am using the following:
lblRecall.Content = currentAddress.Recall;
When I run the program, the first underscore magically disappears and the result becomes "RecallAUX_002." If I try to assign the same variable to a random text box in the form, with the following code, it works fine:
txtGivenName.Content = currentAddress.Recall;
Why is the underscore randomly being removed in labels?