Convert an integer in ISO format to a C# date

November 19, 2008

Yet another DateTime conversion routine, this time using DateTime.ParseExact()

int integerDate = "20081113";

DateTime date = DateTime.ParseExact(integerDate.ToString(), "yyyyMMdd", System.Globalization.CultureInfo.CurrentCulture);

About these ads

One Response to “Convert an integer in ISO format to a C# date”

  1. [...] this link: Convert an integer in ISO format to a C# date Comments [0]Digg [...]

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.

%d bloggers like this: