Observing the error while reading object from File

Requirement:
I am trying to read data from CSV(Libre Office) as a Key, Value pair. while reading the data I faced below error.

Error Details:
"Compiler error encountered processing expression “in_ConfigSheets”. Option Strict on disallowing implicit conversions from Object to System.Collections.IEnumerable

I did not get any relevance of this error. Any help will be appreciated.

Thanks,
Chaitanya

Can you debug and see where and at what point exactly this error is thrown.

Usually this error happens when the assigning value is not matching with the data type of variable.

For example:

objValue is an Object type.
strValue is an String type.

If the assign expression is like below you get the error message stated above.

strValue = objValue //error
strValue = objValue.ToString //no error, you have to do explicit conversion to match data types

Regards,
Karthik Byggari

I am storing the values of sheet using the for each. while assigning the value of sheet to the sheet variable it got failed. Even though the both variables have same type.

Are you using the RE-Framework.
Please go thru the read config file sequence in RE-Framework and see if you find any missing things.

Regards,
Karthik Byggari

Ok.
Thanks,
Chaitanya