Các bạn giúp mình cách lấy định dạng ngày giờ hệ thống với??? (Định dạng chứ hổng fải ngày giờ của nó nghen các bạn).
Thử chơi code này xem nhá
Code:using System; using System.Collections.Generic; using System.Text; using System.Globalization; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { DateTimeFormatInfo dtfi = new DateTimeFormatInfo(); string s=dtfi.FullDateTimePattern; Console.WriteLine(s); } } }