本文介绍了如何使用tryparseexact来比较datetime的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hello All,



我需要检查字符串(将作为'YYYYMMDD'传递,例如20170413)是未来日期与否。我需要为此使用TryParseExact吗?



我目前使用

Hello All,

I need to check the string(will be passed as 'YYYYMMDD' e.g. 20170413) is future date or not. I need to make use of TryParseExact for this?

I have used

ParseExact 

它工作正常。



但现在我必须使用TryParseExact。



有人可以提供帮助吗?



提前致谢。



我尝试过:



尝试使用

currently and it is working fine.

But now I have to use TryParseExact instead.

Can anyone help in this?

Thanks in advance.

What I have tried:

Tried using

ParseExact 

推荐答案

DateTime dateValue;
bool isValidDate = DateTime.TryParseExact(dateString, 
    "yyyyMMdd", 
    CultureInfo.InvariantCulture, 
    DateTimeStyles.None, 
    out dateValue);



string d = "20170413";
            
// using ParseExact
DateTime dt1 = DateTime.ParseExact(d, "yyyyMMdd", System.Globalization.CultureInfo.CurrentCulture);

// using TryParseExact
DateTime dt2;
if (DateTime.TryParseExact(d, "yyyyMMdd", System.Globalization.CultureInfo.CurrentCulture, System.Globalization.DateTimeStyles.None, out dt2))
{
    // the conversion worked
}
else
{
    // the conversion failed
}


这篇关于如何使用tryparseexact来比较datetime的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 01:25