数値を四捨五入するには?[2.0のみ、C#、VB]

http://www.atmarkit.co.jp/fdotnet/dotnettips/700mathround/mathround.html
.net framework の Math.Round はデフォルトだと『四捨五入ではない』。
四捨五入するには、AwayFromZeroを指定する必要がある。

Math.Round(対象数値, まるめ桁, MidpointRounding.AwayFromZero);