How to get current date to display as MM/dd/yyyy
10:39 14 Jul 2026

I have the the method DateTime today = DateTime.Today; I want the the following

DateTime dt = DateTime.Parse(today);

today= dt.ToString("MM/dd/yyyy");

No matter what I try it does not work.

c#