ASP.NET web applications in F#
Tomas writes on The Hub:
ASP.NET web applications in F#
CodeDOM and providers
CodeDOM (Code Document Object Model) is set of objects (located in
System.CodeDom
namespace) that can be used for representing logical structure of .NET source code. For example you can useCodeTypeDeclaration
class to represent class declaration orCodeAssignStatement
to represent assignment in the body of method. CodeDom is language independent and CodeDOM structure can be translated to source code in specified language using code generator (class that implementsICodeGenerator
namespace). The CodeDOM structure can be also compiled to assembly using code compiler (implementation ofICodeCompiler
interface). Microsoft provides several code providers with .NET Framework (for C#, VB.Net, JScript and C++), but you can add your own by by implementing previously mentioned interfaces....