I want to convert my string formatted value to date type with format dd/MM/yyyy.
this.Text="22/11/2009";
DateTime date = DateTime.Parse(this.Text);
It has a second override which asks for IFormatProvider. What is this?
What are the differences between Parse and ParseExact?