This is a sample of how to evaluate a formula in a string and return the result for that formula. This use recursive calls to evaluate the formula. To use this sample you will need Microsoft Framework 1.1.
Converting Number Bases (Base 2 through Base 36)
(Popularity: ) : Converts numbers between different bases, example binary (base 2) to hex (base 16), or decimal (base 10) to base 36 (using upto Z). DotNet Real Tree
(Popularity: ) : Sometimes we need a special loop, but "for.." or "do..while" can't help us or make our code too complex, so we can make a function that run itself from inside and makes a loop. I use this method for drawing ...