I have a CheckBox
that I want to say;
"Load Prior to: 01/01/2001"
But instead the content says;
"Load Prior to: 01 01 2001"
Basically there are no slashes. This is my how I set the content;
oldContactsCheckBox.Content =
"Load Contracts Prior To: " +
DateTime.Today.AddYears(-3).ToString("dd/MM/yyyy");
How can I change this so that the slashes are included in the formatting?