Python. Great language with a very clean syntax. Learning and using it has actually made me a better C# programmer.
For example, Python allowed me to better understand what are lambda functions and when to use them. It probably would have taken me longer to get that concept with just C# alone. C#'s syntax for lambdas, anonymous functions, and especially for delegates served as a distraction to comprehending its intent and how useful it can truly be.
Python has also served as a nice utility scripting language to support my core development efforts in C# from writing build scripts to using it for code generation. The equivalent of those tasks would have taking me longer to code if I just used C#.
If you do want to stick to the .NET world then look into IronPython. Essentially same syntax as Python but interpreted and runs on the .NET CLR.
