Skip to main content

How can i iterate through K2 environment variables or string tables ? I want to write code something like below, but stringtable is not inumerable. Any other way to read environment or string table variables?



 



 



for (int i=0; i< K2.StringTable.length; i++){

strBody+= K2.StringTable.ToString();


}




 

Here is a blog posting that should do the trick:  http://jeylabsblog.com/2008/07/14/k2-accessing-environment-fields-from-code/


Reply