CompilerParameters コンストラクタとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > CompilerParameters コンストラクタの意味・解説 

CompilerParameters コンストラクタ (String[], String)

指定したアセンブリ名出力ファイル名を使用して、CompilerParameters クラス新しインスタンス初期化します。

名前空間: System.CodeDom.Compiler
アセンブリ: System (system.dll 内)
構文構文

Public Sub New ( _
    assemblyNames As String(), _
    outputName As String _
)
Dim assemblyNames As String()
Dim outputName As String

Dim instance As New CompilerParameters(assemblyNames,
 outputName)
public CompilerParameters (
    string[] assemblyNames,
    string outputName
)
public:
CompilerParameters (
    array<String^>^ assemblyNames, 
    String^ outputName
)
public CompilerParameters (
    String[] assemblyNames, 
    String outputName
)
public function CompilerParameters (
    assemblyNames : String[], 
    outputName : String
)

パラメータ

assemblyNames

参照するアセンブリの名前。

outputName

出力ファイル名。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CompilerParameters クラス
CompilerParameters メンバ
System.CodeDom.Compiler 名前空間

CompilerParameters コンストラクタ (String[])

指定したアセンブリ名使用して、CompilerParameters クラス新しインスタンス初期化します。

名前空間: System.CodeDom.Compiler
アセンブリ: System (system.dll 内)
構文構文

Public Sub New ( _
    assemblyNames As String() _
)
Dim assemblyNames As String()

Dim instance As New CompilerParameters(assemblyNames)
public CompilerParameters (
    string[] assemblyNames
)
public:
CompilerParameters (
    array<String^>^ assemblyNames
)
public CompilerParameters (
    String[] assemblyNames
)
public function CompilerParameters (
    assemblyNames : String[]
)

パラメータ

assemblyNames

参照するアセンブリの名前。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CompilerParameters クラス
CompilerParameters メンバ
System.CodeDom.Compiler 名前空間

CompilerParameters コンストラクタ (String[], String, Boolean)

指定したアセンブリ名出力名、デバッグ情報含めかどうかを示す値を使用して、CompilerParameters クラス新しインスタンス初期化します。

名前空間: System.CodeDom.Compiler
アセンブリ: System (system.dll 内)
構文構文

Public Sub New ( _
    assemblyNames As String(), _
    outputName As String, _
    includeDebugInformation As Boolean _
)
Dim assemblyNames As String()
Dim outputName As String
Dim includeDebugInformation As Boolean

Dim instance As New CompilerParameters(assemblyNames,
 outputName, includeDebugInformation)
public CompilerParameters (
    string[] assemblyNames,
    string outputName,
    bool includeDebugInformation
)
public:
CompilerParameters (
    array<String^>^ assemblyNames, 
    String^ outputName, 
    bool includeDebugInformation
)
public CompilerParameters (
    String[] assemblyNames, 
    String outputName, 
    boolean includeDebugInformation
)
public function CompilerParameters (
    assemblyNames : String[], 
    outputName : String, 
    includeDebugInformation : boolean
)

パラメータ

assemblyNames

参照するアセンブリの名前。

outputName

出力ファイル名。

includeDebugInformation

デバッグ情報含め場合trueデバッグ情報含めない場合false

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CompilerParameters クラス
CompilerParameters メンバ
System.CodeDom.Compiler 名前空間

CompilerParameters コンストラクタ

CompilerParameters クラス新しインスタンス初期化します。
オーバーロードの一覧オーバーロードの一覧

参照参照

関連項目

CompilerParameters クラス
CompilerParameters メンバ
System.CodeDom.Compiler 名前空間

CompilerParameters コンストラクタ ()

CompilerParameters クラス新しインスタンス初期化します。

名前空間: System.CodeDom.Compiler
アセンブリ: System (system.dll 内)
構文構文

Dim instance As New CompilerParameters
public CompilerParameters ()
public:
CompilerParameters ()
public CompilerParameters ()
public function CompilerParameters ()
使用例使用例

CompilerParameters使用してコンパイラ各種設定オプション指定する例を次に示します

Public Shared Function CompileCode(provider
 As CodeDomProvider, _
    sourceFile As String, exeFile As
 String) As Boolean

   
    Dim cp As New CompilerParameters()
      
    ' Generate an executable instead of 
    ' a class library.
    cp.GenerateExecutable = True
      
    ' Set the assembly file name to generate.
    cp.OutputAssembly = exeFile
      
    ' Generate debug information.
    cp.IncludeDebugInformation = True
      
    ' Add an assembly reference.
    cp.ReferencedAssemblies.Add("System.dll")
      
    ' Save the assembly as a physical file.
    cp.GenerateInMemory = False
      
    ' Set the level at which the compiler 
    ' should start displaying warnings.
    cp.WarningLevel = 3
      
    ' Set whether to treat all warnings as errors.
    cp.TreatWarningsAsErrors = False
      
    ' Set compiler argument to optimize output.
    cp.CompilerOptions = "/optimize"
      
    ' Set a temporary files collection.
    ' The TempFileCollection stores the temporary files
    ' generated during a build in the current directory,
    ' and does not delete them after compilation.
    cp.TempFiles = New TempFileCollection(".",
 True)
      
    If provider.Supports(GeneratorSupport.EntryPointMethod) Then
        ' Specify the class that contains 
        ' the main method of the executable.
        cp.MainClass = "Samples.Class1"
    End If
    
    ' Invoke compilation.
    Dim cr As CompilerResults = _
        provider.CompileAssemblyFromFile(cp, sourceFile)
      
    If cr.Errors.Count > 0 Then
        ' Display compilation errors.
        Console.WriteLine("Errors building {0} into {1}",
 _
            sourceFile, cr.PathToAssembly)
        Dim ce As System.CodeDom.Compiler.CompilerError
        For Each ce In 
 cr.Errors
            Console.WriteLine("  {0}", ce.ToString())
            Console.WriteLine()
        Next ce
    Else
        Console.WriteLine("Source {0} built into {1} successfully.",
 _
            sourceFile, cr.PathToAssembly)
        Console.WriteLine("{0} temporary files created during
 the compilation.", _
                cp.TempFiles.Count.ToString())
    End If
      
    ' Return the results of compilation.
    If cr.Errors.Count > 0 Then
        Return False
    Else
        Return True
    End If
End Function 'CompileCode
public static bool CompileCode(CodeDomProvider
 provider, 
    String sourceFile, 
    String exeFile)
{

    CompilerParameters cp = new CompilerParameters();

    // Generate an executable instead of 
    // a class library.
    cp.GenerateExecutable = true;

    // Set the assembly file name to generate.
    cp.OutputAssembly = exeFile;

    // Generate debug information.
    cp.IncludeDebugInformation = true;

    // Add an assembly reference.
    cp.ReferencedAssemblies.Add( "System.dll" );

    // Save the assembly as a physical file.
    cp.GenerateInMemory = false;

    // Set the level at which the compiler 
    // should start displaying warnings.
    cp.WarningLevel = 3;

    // Set whether to treat all warnings as errors.
    cp.TreatWarningsAsErrors = false;
    
    // Set compiler argument to optimize output.
    cp.CompilerOptions = "/optimize";

    // Set a temporary files collection.
    // The TempFileCollection stores the temporary files
    // generated during a build in the current directory,
    // and does not delete them after compilation.
    cp.TempFiles = new TempFileCollection(".", true);


    if (provider.Supports(GeneratorSupport.EntryPointMethod))
    {
        // Specify the class that contains 
        // the main method of the executable.
        cp.MainClass = "Samples.Class1";
    }
  
    // Invoke compilation.
    CompilerResults cr = provider.CompileAssemblyFromFile(cp, sourceFile);

    if(cr.Errors.Count > 0)
    {
        // Display compilation errors.
        Console.WriteLine("Errors building {0} into {1}",  
            sourceFile, cr.PathToAssembly);
        foreach(CompilerError ce in cr.Errors)
        {
            Console.WriteLine("  {0}", ce.ToString());
            Console.WriteLine();
        }
    }
    else
    {
        Console.WriteLine("Source {0} built into {1} successfully.",
            sourceFile, cr.PathToAssembly);
        Console.WriteLine("{0} temporary files created during the compilation."
,
            cp.TempFiles.Count.ToString());
    }
  
    // Return the results of compilation.
    if (cr.Errors.Count > 0)
    {
        return false;
    }
    else 
    {
        return true;
    }
}
static bool CompileCode( CodeDomProvider^ provider
,
   String^ sourceFile,
   String^ exeFile )
{
   CompilerParameters^ cp = gcnew CompilerParameters;
   if ( ( !cp) || ( !compiler) )
   {
      return false;
   }

   // Generate an executable instead of 
   // a class library.
   cp->GenerateExecutable = true;
   
   // Set the assembly file name to generate.
   cp->OutputAssembly = exeFile;
   
   // Generate debug information.
   cp->IncludeDebugInformation = true;
   
   // Add an assembly reference.
   cp->ReferencedAssemblies->Add( "System.dll" );
   
   // Save the assembly as a physical file.
   cp->GenerateInMemory = false;
   
   // Set the level at which the compiler 
   // should start displaying warnings.
   cp->WarningLevel = 3;
   
   // Set whether to treat all warnings as errors.
   cp->TreatWarningsAsErrors = false;
   
   // Set compiler argument to optimize output.
   cp->CompilerOptions = "/optimize";
   
   // Set a temporary files collection.
   // The TempFileCollection stores the temporary files
   // generated during a build in the current directory,
   // and does not delete them after compilation.
   cp->TempFiles = gcnew TempFileCollection( ".",true
 );

   if ( provider->Supports( GeneratorSupport::EntryPointMethod
 ) )
   {
      
      // Specify the class that contains 
      // the main method of the executable.
      cp->MainClass = "Samples.Class1";
   }

   // Invoke compilation.
   CompilerResults^ cr = provider->CompileAssemblyFromFile( cp, sourceFile );

   if ( cr->Errors->Count > 0 )
   {
      // Display compilation errors.
      Console::WriteLine( "Errors building {0} into {1}",
         sourceFile, cr->PathToAssembly );
      for each ( CompilerError^ ce in cr->Errors
 )
      {
         Console::WriteLine( "  {0}", ce->ToString() );
         Console::WriteLine();

      }
   }
   else
   {
      Console::WriteLine( "Source {0} built into {1} successfully.",
         sourceFile, cr->PathToAssembly );
   }

   // Return the results of compilation.
   if ( cr->Errors->Count > 0 )
   {
      return false;
   }
   else
   {
      return true;
   }
}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CompilerParameters クラス
CompilerParameters メンバ
System.CodeDom.Compiler 名前空間



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「CompilerParameters コンストラクタ」の関連用語

CompilerParameters コンストラクタのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



CompilerParameters コンストラクタのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS