How to create list with given data type in C#
**New List(Of UiPath.IntelligentOCR.Activities.Actions.Model.DocumentValidationActionData)
**
It is showing me an error that Model doesn’t exist in the name space
How to create list with given data type in C#
**New List(Of UiPath.IntelligentOCR.Activities.Actions.Model.DocumentValidationActionData)
**
It is showing me an error that Model doesn’t exist in the name space
Correct one is
New List(Of UiPath.IntelligentOCR.Actions.Models.DocumentValidationActionData)
Hope this helps
cheers
For C# Please use this
new List<UiPath.IntelligentOCR.Actions.Models.DocumentValidationActionData>()
cheers
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.