Example:
Function
-----------------
int value = 0;
for( int x = 0; x < 10; x++ )
{
value ++ x;
}
Result = 90
Right now I am doing this through CodeDom, which is a little slower than I would like. Is there another alternative I could do which is much faster but still gives me the power of being able to do what I can here?
DanPosted Jul 26, 2008, 11:25 PM
Bechir BejaouiPosted Jul 26, 2008, 1:40 PM