CodeDomProvider::CreateCompiler Method ()
.NET Framework (current version)
Note: This API is now obsolete.
Namespace:
System.CodeDom.Compiler
Assembly: System (in System.dll)
Return to top
When overridden in a derived class, creates a new code compiler.
Assembly: System (in System.dll)
public: [ObsoleteAttribute("Callers should not use the ICodeCompiler interface and should instead use the methods directly on the CodeDomProvider class. Those inheriting from CodeDomProvider must still implement this interface, and should exclude this warning or also obsolete this method.")] virtual ICodeCompiler^ CreateCompiler() abstract
Return Value
Type: System.CodeDom.Compiler::ICodeCompiler^An ICodeCompiler that can be used for compilation of System.CodeDom based source code representations.
This method is obsolete in the .NET Framework 2.0. The recommended alternative is to call the ICodeCompiler methods that are directly available in the code provider.
Notes to Inheritors:
In the .NET Framework 2.0, you should implement the ICodeCompiler members in the CodeDomProvider class and throw a NotSupportedException when this method is called.
.NET Framework
Available since 1.1
Available since 1.1
Show: