Creating list error

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

@user928

Correct one is

New List(Of UiPath.IntelligentOCR.Actions.Models.DocumentValidationActionData)

Hope this helps

cheers

@user928

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.