When I try to parse the below rrule it shows maxoccurences as 10 and not 100, looks lke it truncates greater than 2 digits as I was able to get up to 99 MaxOccurences.
DTSTART:20071119T162400Z DTEND:20071119T172400Z RRULE:FREQ=DAILY;COUNT=100;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR,SA,SU
Used the below code to Parse the above RRule
RecurrenceRule parsedRule;
RecurrenceRule.TryParse(recurrencerule, out parsedRule);
Any fix?