Hi,
I need to find length of an object array, If I try like
count = objVar.tostring.length
It returns 15 which is counting chars in System.Object
Can anyone help me with his?
Thanks in advance
Hi,
I need to find length of an object array, If I try like
count = objVar.tostring.length
It returns 15 which is counting chars in System.Object
Can anyone help me with his?
Thanks in advance
If objVar is an array you should be able to get the length with objVar.Length
This Object is coming as an output variable from “Get object Properties” in Active directory scope.
I need to check number of values in Object. I am looking to get count as 35.
Hi @kaurM ,
As @ptrobot mentioned in the previous post, You Should be able to get the Count of the Items present in the Object Array variable using the Length()
method or the Count()
Method.
Like in the below way :
yourObjArrayVar.Length()
or
yourObjArrayVar.Count()
Let us know what is the Output after you have used the Above Expressions