CodeDomProvider.CreateCompiler メソッド

定義

注意事項

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.

派生クラスでオーバーライドされた場合は、新しいコード コンパイラを作成します。

public:
 abstract System::CodeDom::Compiler::ICodeCompiler ^ CreateCompiler();
public abstract System.CodeDom.Compiler.ICodeCompiler CreateCompiler();
[System.Obsolete("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.")]
public abstract System.CodeDom.Compiler.ICodeCompiler CreateCompiler();
abstract member CreateCompiler : unit -> System.CodeDom.Compiler.ICodeCompiler
[<System.Obsolete("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.")>]
abstract member CreateCompiler : unit -> System.CodeDom.Compiler.ICodeCompiler
Public MustOverride Function CreateCompiler () As ICodeCompiler

返品

System.CodeDom ベースのソース コード表現のコンパイルに使用できるICodeCompiler

属性

注釈

メソッドは廃止されています。 代わりに、コード プロバイダーで直接使用できる ICodeCompiler メソッドを呼び出す方法をお勧めします。

注意 (実装者)

CodeDomProvider クラスにICodeCompilerメンバーを実装し、このメソッドが呼び出されたときにNotSupportedExceptionをスローする必要があります。

適用対象