Math.NET Numerics
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
565 B

namespace Microsoft.FSharp.Compiler.CodeDom
open System.CodeDom.Compiler
/// Implementation of the CodeDomProvider for the F# language.
/// If you intend to use CodeDom with ASP.NET you should use <c>FSharpAspNetCodeProvider</c> instead.
type FSharpCodeProvider =
inherit CodeDomProvider
new : unit -> FSharpCodeProvider
/// Implementation of the CodeDomProvider for the F# language.
/// This is specialized version that can be used with ASP.NET.
type FSharpAspNetCodeProvider =
inherit CodeDomProvider
new : unit -> FSharpAspNetCodeProvider