c# - Xamarin.IOS date format -
i working on app should able scan codes, qr etc.
however when scanning vevent code date format looking this:
20140713t190000z
my question basicly how can convert normal datetime can utilize add together events calender?
thanks in advance
use datetime.parseexact
datetime d = datetime.parseexact("20140713t190000z","yyyymmdd't'hhmmss'z'",null); also see question
c# ios datetime xamarin ekevent
No comments:
Post a Comment