I wrote a .Net wrapper for a Java Markdown parser. This allows anyone using C#, VB.Net to convert Markdown to Html.

It can be viewed/downloaded here: https://github.com/theryan722/Ozone.Markdown

There is only one method that you need to use:

Code:
Ozone.Markdown.Parser.ParseMarkdown(markdown)
Where markdown is the markdown code you want to be converted to Html. It returns a string, which is the converted Html code.

In the future I plan on adding a console application version as well so that anyone can use it via the command line.