You can use format strings to give the output string the format you like.
DateTime dateAndTime = DateTime.Now;Console.WriteLine(dateAndTime.ToString("dd/MM/yyyy")); // Will give you smth like 25/05/2011
Read more about Custom date and time format strings.