I am trying to use Type into activity with the following.
Value is a variable which is of generic type
I am adding enter keystorke at the end.
value+ “[k(enter)]”
It is thorwing me an error cannot add system.int32 to system.integer. I can understand why it is throwing and error. But how to eliminate that ?
I mean how to use a generic value with keystoke.
Converting value to integer is not an option for me. Please suggest.
yes of course let it be integer value
but we can use only strings in type into activity buddy
So we need to convert to string from being with any datatype
Thanks @Palaniyappan for prompt response.
Lets say variable1 has value 00001234. It is typing as 1234 if we convert into string. Hence, I dont want it to convert variable1 into string variable.
So, I can only use string values inside type into activity ?
INT datatype will not consider leading zeros as per .net standard. The method (toString) is not the one which strips leading zeros. @Palaniyappan solution will resolve your case i guess.