Thomas and Oren recently showed a couple of scripts in PowerShell and Boo respectively that count the number of types and methods in mscorlib. Here is one possible implementation in IronPython ... import System typeCount = methodCount = 0 mscorlib = System...