GeneratorSupport 列挙体とは? わかりやすく解説

GeneratorSupport 列挙体

コード ジェネレータ特定の型のコード要素サポートしているかどうか判断するために使用する識別子定義します

この列挙体には、メンバ値のビットごとの組み合わせ可能にする FlagsAttribute 属性含まれています。

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

<SerializableAttribute> _
<FlagsAttribute> _
Public Enumeration GeneratorSupport
Dim instance As GeneratorSupport
[SerializableAttribute] 
[FlagsAttribute] 
public enum GeneratorSupport
[SerializableAttribute] 
[FlagsAttribute] 
public enum class GeneratorSupport
/** @attribute SerializableAttribute() */ 
/** @attribute FlagsAttribute() */ 
public enum GeneratorSupport
SerializableAttribute 
FlagsAttribute 
public enum GeneratorSupport
メンバメンバ
 メンバ説明
ArraysOfArraysコード ジェネレータ配列配列サポートしていることを示します。 
AssemblyAttributesコード ジェネレータアセンブリ属性サポートしていることを示します。 
ChainedConstructorArgumentsコード ジェネレータチェイン コンストラクタ引数サポートしていることを示します。 
ComplexExpressionsコード ジェネレータ複雑な式をサポートしていることを示します。 
DeclareDelegatesコード ジェネレータデリゲート宣言サポートしていることを示します。 
DeclareEnumsコード ジェネレータ列挙体の宣言サポートしていることを示します。 
DeclareEventsコード ジェネレータイベント宣言サポートしていることを示します。 
DeclareIndexerPropertiesコード ジェネレータインデクサ プロパティ宣言サポートしていることを示します。 
DeclareInterfacesコード ジェネレータインターフェイス宣言サポートしていることを示します。 
DeclareValueTypesコード ジェネレータ値型宣言サポートしていることを示します。 
EntryPointMethodコード ジェネレータプログラム エントリ ポイント メソッド指定サポートしていることを示します。この識別子は、実行可能ファイル作成するときに使用されます。 
GenericTypeDeclarationコード ジェネレータジェネリック型宣言サポートしていることを示します。 
GenericTypeReferenceコード ジェネレータジェネリック型参照サポートしていることを示します。 
GotoStatementsコード ジェネレータgoto ステートメントサポートしていることを示します。 
MultidimensionalArraysコード ジェネレータ多次元配列参照サポートしていることを示します。現在、CodeDom を使用して多次元配列インスタンス化することはできません。 
MultipleInterfaceMembersコード ジェネレータ複数インターフェイス実装するメンバ宣言サポートしていることを示します。 
NestedTypesコード ジェネレータ入れ子にされた型宣言サポートしていることを示します。 
ParameterAttributesコード ジェネレータパラメータ属性サポートしていることを示します。 
PartialTypesコード ジェネレータ部分型宣言サポートしていることを示します。 
PublicStaticMembersコード ジェネレータパブリック静的メンバサポートしていることを示します。 
ReferenceParametersジェネレータ参照パラメータおよび out パラメータサポートしていることを示します。 
Resourcesコード ジェネレータ.NET Framework リソースコンパイルサポートしていることを示します。これらは、アセンブリ直接コンパイルされる既定リソース、またはサテライト アセンブリ参照されるリソースです。 
ReturnTypeAttributesコード ジェネレータ戻り値の型の属性宣言サポートしていることを示します。 
StaticConstructorsコード ジェネレータ静的コンストラクタサポートしていることを示します。 
TryCatchStatementsコード ジェネレータが try...catch ステートメントサポートしていることを示します。 
Win32Resourcesコード ジェネレータWin32 リソースコンパイルサポートしていることを示します。 
解説解説
使用例使用例

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
      
    If provider.Supports(GeneratorSupport.Resources) Then
        ' Set the embedded resource file of the assembly.
        ' This is useful for culture-neutral resources, 
        ' or default (fallback) resources.
        cp.EmbeddedResources.Add("Default.resources")
         
        ' Set the linked resource reference files of the assembly.
        ' These resources are included in separate assembly files,
        ' typically localized for a specific language and culture.
        cp.LinkedResources.Add("nb-no.resources")
    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 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";
    }
  
    if (provider.Supports(GeneratorSupport.Resources))
    {
        // Set the embedded resource file of the assembly.
        // This is useful for culture-neutral resources, 
        // or default (fallback) resources.
        cp.EmbeddedResources.Add("Default.resources");

        // Set the linked resource reference files of the assembly.
        // These resources are included in separate assembly files,
        // typically localized for a specific language and culture.
        cp.LinkedResources.Add("nb-no.resources");
    }

    // 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)  
   {
      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";
   }

   if ( provider->Supports( GeneratorSupport::Resources ) )
   {
      // Set the embedded resource file of the assembly.
      // This is useful for culture-neutral resources, 
      // or default (fallback) resources.
      cp->EmbeddedResources->Add( "Default.resources" );
      
      // Set the linked resource reference files of the assembly.
      // These resources are included in separate assembly files,
      // typically localized for a specific language and culture.
      cp->LinkedResources->Add( "nb-no.resources" );
   }

   // 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;
   }
}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
System.CodeDom.Compiler 名前空間
ICodeGenerator
Supports
CompilerParameters クラス



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

辞書ショートカット

すべての辞書の索引

「GeneratorSupport 列挙体」の関連用語

GeneratorSupport 列挙体のお隣キーワード
検索ランキング

   

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



GeneratorSupport 列挙体のページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2024 GRAS Group, Inc.RSS