As mentioned in several answers already that have been already given, you can use ToShorDateString()
:
DateTime.Now.ToShortDateString();
However, you may be a bit blocked if you also want to use the culture as a parameter. In this case you can use the ToString()
method with the "d"
format:
DateTime.Now.ToString("d", CultureInfo.GetCultureInfo("en-US"))