Google Search: c# convert date from uk to usa

One of the searches that came from Google to my site asked the following “c# convert date from uk to usa”.Now I don’t really know exactly what the user was asking for, but I presume it is something fairly simple. The way that I would convert a UK date into a US date is as follows.Read in the UK date, short format/long format whatever into a DateTime field. The output the date time using a US locale.


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan

<p>One of the searches that came from Google to my site asked the following "c# convert date from uk to usa".<p />Now I don't really know exactly what the user was asking for, but I presume it is something fairly simple. The way that I would convert a UK date into a US date is as follows.<p />Read in the UK date, short format/long format whatever into a DateTime field. The output the date time using a US locale. <p />The following code works in vs2005.<p />CultureInfo cultEnGb = new CultureInfo("en-GB");CultureInfo cultEnUs = new CultureInfo("en-US");DateTime dtGb = Convert.ToDateTime(textBox1.Text, cultEnGb.DateTimeFormat);textBox2.Text = dtGb.ToString(cultEnUs.DateTimeFormat.ShortDatePattern);<p />It reads in the date and tries to load the text as a UK Date from the first textbox and then it uses the US locale to output the string into the second textbox.<p /></p>


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan


Print Share Comment Cite Upload Translate Updates
APA

Paul Kinlan | Sciencx (2005-11-29T00:00:00+00:00) Google Search: c# convert date from uk to usa. Retrieved from https://www.scien.cx/2005/11/29/google-search-c-convert-date-from-uk-to-usa/

MLA
" » Google Search: c# convert date from uk to usa." Paul Kinlan | Sciencx - Tuesday November 29, 2005, https://www.scien.cx/2005/11/29/google-search-c-convert-date-from-uk-to-usa/
HARVARD
Paul Kinlan | Sciencx Tuesday November 29, 2005 » Google Search: c# convert date from uk to usa., viewed ,<https://www.scien.cx/2005/11/29/google-search-c-convert-date-from-uk-to-usa/>
VANCOUVER
Paul Kinlan | Sciencx - » Google Search: c# convert date from uk to usa. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2005/11/29/google-search-c-convert-date-from-uk-to-usa/
CHICAGO
" » Google Search: c# convert date from uk to usa." Paul Kinlan | Sciencx - Accessed . https://www.scien.cx/2005/11/29/google-search-c-convert-date-from-uk-to-usa/
IEEE
" » Google Search: c# convert date from uk to usa." Paul Kinlan | Sciencx [Online]. Available: https://www.scien.cx/2005/11/29/google-search-c-convert-date-from-uk-to-usa/. [Accessed: ]
rf:citation
» Google Search: c# convert date from uk to usa | Paul Kinlan | Sciencx | https://www.scien.cx/2005/11/29/google-search-c-convert-date-from-uk-to-usa/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.