Phương thức Convert.ToDateTime chuyển đổi một giá trị nhất định thành một giá trị DateTime.
Sau đây là chuỗi của tôi.
string myDateString; myDateString = "09/09/2018";
Bây giờ, chúng ta hãy chuyển đổi nó bằng phương thức Convert.ToDateTime ().
DateTime result; result = Convert.ToDateTime(myDateString);
Đây là ví dụ đầy đủ.
Ví dụ
using System; public class Demo { public static void Main() { string myDateString; DateTime result; myDateString = "09/09/2018"; result = Convert.ToDateTime(myDateString); Console.WriteLine("'{0}' converted to {1}", myDateString, result); } }
Đầu ra
'09/09/2018' converted to 9/9/2018 12:00:00 AM