CodeDomProvider::CreateGenerator 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 generator.
Assembly: System (in System.dll)
public: [ObsoleteAttribute("Callers should not use the ICodeGenerator 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 ICodeGenerator^ CreateGenerator() abstract
Return Value
Type: System.CodeDom.Compiler::ICodeGenerator^An ICodeGenerator that can be used to generate System.CodeDom based source code representations.
This method is obsolete in the .NET Framework 2.0. The recommended alternative is to call the ICodeGenerator methods that are directly available in the CodeDomProvider class.
Notes to Inheritors:
In the .NET Framework 2.0, you should implement the ICodeGenerator 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: