CultureInfo culture = new System.Globalization.CultureInfo("en-US");
labelToday.Text = DateTime.Now.ToString("yyyy-MM-dd(ddd)", culture);
//2022-02-02(Wed)
Sample code collection
CultureInfo culture = new System.Globalization.CultureInfo("en-US");
labelToday.Text = DateTime.Now.ToString("yyyy-MM-dd(ddd)", culture);
//2022-02-02(Wed)