DateTime - Option strict on disallows implicit conversions from ‘object’ to ‘string’ uipath

Okay so i was learning ui path using the uipath academy and doing the same steps and still getting this issue

**Var - DateCurrentPerson of System.DateTime **
Var - BirthDates of System.Collectins.Generic.Dictionary - key is string and vlaue is string

uipath dic

The issue is at the assign in value where im adding this DateTime.Parse(BirthDates(item))

Hi,

Can you try as the following?

DateTime.Parse(BirthDates(item.ToString()))

OR

Set String at TypeArgument in ForEach activity.

Regards,

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.