The article explains how. If you need an advice in implementing this in vb.net then you need to be more specific. What exactly you don't know how to do (provided you read and undestood the algorithm).

Step 1: Convert infix notation (2 + 2) to postfix (RPN) ( 2 2 +)
Step 2: Implement Shunting Yard algorithm for evaluation.