I am trying to converting string array to int array
“array.ConvertAll( stringArrayValues,function(str) cint(str.trim))”
This give me “System.String” first and then give me the first value from array
is there any issue with this ?
I am trying to converting string array to int array
“array.ConvertAll( stringArrayValues,function(str) cint(str.trim))”
This give me “System.String” first and then give me the first value from array
is there any issue with this ?
Please check below thread to do this.
Hi @muneeb
In addition to @lakshman shared to us ,Also kindly read this article it might be helpful to you.
cheers ![]()
Happy learning ![]()
@muneeb
Give a try on
yourStringArr.Select(Function (s) cint(s.trim)).toArray