I'm a .NET developer by day, but have been playing with Haskell in my spare time for awhile now. I'm curious: any Haskell .net implemenations in the same vein as IronPython?
There is no .net Haskell that I know of, but another functional language is avilable: F#. It runs in .Net and comes with Visual studio. They are similar to a point; this stackoverflow question explains the differences.
Here's the documentation on getting started with F#.
There's no active work on porting the GHC runtime to .NET.
F# is the closest thing, though be aware it is based on OCaml, and as such, isn't based on referential transparency by-default, as Haskell is.
Haskell wouldn't readily work very well on .NET without some big changes to the runtime or maybe a really clever compiler.
Maybe things will change when code contracts permeate more, but right now, even functions that actually are pure in behavior, like the string manipulation functions, would have to be accessed via IO -- so it just wouldn't be worth it at all.
That, and there are optimization issues -- .NET doesn't do any optimizations for immutable objects, for instance, so lists (sequences as they're called in F#, or IEnumerable as they're called in C#) wouldn't be as efficient.
A Haskell IL compiler might be doable, like something that spits out .NET assemblies instead of x86 .exes/.dlls.