English 中文(简体)
如何按通用日期格式开展工作
原标题:How to work with generic date format
  • 时间:2011-08-01 19:57:53
  •  标签:
  • c#
  • datetime

i have C# program that work with access database. (i have datetime field in access - Short Date) How to make sure that the program will not crash with the wrong date format ?

for example: in my computer the date in this format: dd/MM/yyyy and if i run my program on computer that has this format: MM/dd/yyyy the program will crash or will show me abnormal result

is there any generic solution ? can i get any C# code for this ?

预先感谢

问题回答

在使用<条码>进行婚前注明日期。 e.g.

string myDate = "01/30/1970";
DateTime validDate;
if (DateTime.TryParse(myDate, out validDate))
{
   // Good date, now stored in validDate
}
else
{
   // Handle/Cleanup bad date.            
}

如果你使用系统,你就不必担心。 日期: 查阅和查阅。 净额将这一日期作为数字值储存。 在前端,你可以照此办理。 日期 时间可以照顾当地化问题,因此你不需要做任何特殊的事情。

private DateTime ParseDate(string date)
{
    DateTime convertedDate;

    if (!DateTime.TryParseExact(date, "ddMMyyyy", new CultureInfo("en-US"),
         DateTimeStyles.None, out convertedDate))

        throw new FormatException(string.Format("Unable to format date:{0}", date));

    return convertedDate;

}




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签