CodeConstructorとは? わかりやすく解説

CodeConstructor イベント


パブリック イベントパブリック イベント

  名前 説明
パブリック イベント PopulateImplementationTypes  ImplementationTypes コレクション最初にアクセスされたときに発生するイベント。 ( CodeMemberMethod から継承されます。)
パブリック イベント PopulateParameters  Parameters コレクション最初にアクセスされたときに発生するイベント。 ( CodeMemberMethod から継承されます。)
パブリック イベント PopulateStatements  Statements コレクション最初にアクセスされたときに発生するイベント。 ( CodeMemberMethod から継承されます。)
参照参照

関連項目

CodeConstructor クラス
System.CodeDom 名前空間

CodeConstructor クラス

型のインスタンス コンストラクタ宣言表します

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

<SerializableAttribute> _
<ComVisibleAttribute(True)> _
<ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)> _
Public Class CodeConstructor
    Inherits CodeMemberMethod
Dim instance As CodeConstructor
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
[ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)] 
public class CodeConstructor : CodeMemberMethod
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
[ClassInterfaceAttribute(ClassInterfaceType::AutoDispatch)] 
public ref class CodeConstructor : public
 CodeMemberMethod
/** @attribute SerializableAttribute() */ 
/** @attribute ComVisibleAttribute(true) */ 
/** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ 
public class CodeConstructor extends CodeMemberMethod
SerializableAttribute 
ComVisibleAttribute(true) 
ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) 
public class CodeConstructor extends
 CodeMemberMethod
解説解説
使用例使用例

CodeConstructor使用して複数種類コンストラクタ宣言する例を次に示します

 ' This example declares two types, one of which inherits from another
,
 ' and creates a set of different styles of constructors using CodeConstructor.

 ' Creates a new CodeCompileUnit to contain the program graph.
 Dim CompileUnit As New
 CodeCompileUnit()
 ' Declares a new namespace object and names it.
 Dim Samples As New CodeNamespace("Samples")
 ' Adds the namespace object to the compile unit.
 CompileUnit.Namespaces.Add(Samples)
 ' Adds a new namespace import for the System namespace.
 Samples.Imports.Add(New CodeNamespaceImport("System"))
 
 ' Declares a new type and names it.
 Dim BaseType As New CodeTypeDeclaration("BaseType")
 ' Adds the new type to the namespace object's type collection.
 Samples.Types.Add(BaseType)
 
 ' Declares a default constructor that takes no arguments.
 Dim defaultConstructor As New
 CodeConstructor()
 defaultConstructor.Attributes = MemberAttributes.Public
 ' Adds the constructor to the Members collection of the BaseType.
 BaseType.Members.Add(defaultConstructor)
 
 ' Declares a constructor that takes a string argument.
 Dim stringConstructor As New
 CodeConstructor()
 stringConstructor.Attributes = MemberAttributes.Public
 ' Declares a parameter of type string named "TestStringParameter".
 stringConstructor.Parameters.Add(New CodeParameterDeclarationExpression("System.String",
 "TestStringParameter"))
 ' Adds the constructor to the Members collection of the BaseType.
 BaseType.Members.Add(stringConstructor)
 
 ' Declares a type that derives from BaseType and names it.
 Dim DerivedType As New
 CodeTypeDeclaration("DerivedType")
 ' The DerivedType class inherits from the BaseType class.
 DerivedType.BaseTypes.Add(New CodeTypeReference("BaseType"))
 ' Adds the new type to the namespace object's type collection.
 Samples.Types.Add(DerivedType)
 
 ' Declare a constructor that takes a string argument and calls the
 base class constructor with it.
 Dim baseStringConstructor As New
 CodeConstructor()
 baseStringConstructor.Attributes = MemberAttributes.Public
 ' Declares a parameter of type string named "TestStringParameter".
    
 baseStringConstructor.Parameters.Add(New CodeParameterDeclarationExpression("System.String",
 "TestStringParameter"))
 ' Calls a base class constructor with the TestStringParameter parameter.
 baseStringConstructor.BaseConstructorArgs.Add(New CodeVariableReferenceExpression("TestStringParameter"))
 ' Adds the constructor to the Members collection of the DerivedType.
 DerivedType.Members.Add(baseStringConstructor)
 
 ' Declares a constructor overload that calls another constructor for
 the type with a predefined argument.
 Dim overloadConstructor As New
 CodeConstructor()
 overloadConstructor.Attributes = MemberAttributes.Public
 ' Sets the argument to pass to a base constructor method.
 overloadConstructor.ChainedConstructorArgs.Add(New CodePrimitiveExpression("Test"))
 ' Adds the constructor to the Members collection of the DerivedType.
 DerivedType.Members.Add(overloadConstructor)

 ' Declares a constructor overload that calls another constructor for
 the type.
 Dim overloadConstructor2 As New
 CodeConstructor()
 overloadConstructor2.Attributes = MemberAttributes.Public
 overloadConstructor2.Parameters.Add( New CodeParameterDeclarationExpression("System.Int32",
 "TestIntParameter") )
 ' Sets the argument to pass to a base constructor method.
 overloadConstructor2.ChainedConstructorArgs.Add(New CodeSnippetExpression(""))
 ' Adds the constructor to the Members collection of the DerivedType.
 DerivedType.Members.Add(overloadConstructor2)

' A Visual Basic code generator produces the following source code for
 the preceeding example code:

' Public Class BaseType
'     
'     Public Sub New()
'         MyBase.New
'     End Sub
'        
'     Public Sub New(ByVal TestStringParameter As String)
'         MyBase.New
'     End Sub
' End Class
'    
' Public Class DerivedType
'     Inherits BaseType
'        
'     Public Sub New(ByVal TestStringParameter As String)
'         MyBase.New(TestStringParameter)
'     End Sub
'     
'     Public Sub New()
'         Me.New("Test")
'     End Sub
'
'     Public Sub New(ByVal TestIntParameter As Integer)
'         Me.New()
'     End Sub
' End Class


// This example declares two types, one of which inherits from another
,
// and creates a set of different styles of constructors using CodeConstructor.

// Creates a new CodeCompileUnit to contain the program graph.
CodeCompileUnit CompileUnit = new CodeCompileUnit();
// Declares a new namespace object and names it.
CodeNamespace Samples = new CodeNamespace("Samples");
// Adds the namespace object to the compile unit.
CompileUnit.Namespaces.Add( Samples );
// Adds a new namespace import for the System namespace.
Samples.Imports.Add( new CodeNamespaceImport("System")
 );            

// Declares a new type and names it.
CodeTypeDeclaration BaseType = new CodeTypeDeclaration("BaseType");
                                                
// Adds the new type to the namespace object's type collection.
Samples.Types.Add(BaseType);

// Declares a default constructor that takes no arguments.
CodeConstructor defaultConstructor = new CodeConstructor();
defaultConstructor.Attributes = MemberAttributes.Public;
// Adds the constructor to the Members collection of the BaseType.
BaseType.Members.Add(defaultConstructor);

// Declares a constructor that takes a string argument.
CodeConstructor stringConstructor = new CodeConstructor();
stringConstructor.Attributes = MemberAttributes.Public;
// Declares a parameter of type string named "TestStringParameter".
stringConstructor.Parameters.Add( new CodeParameterDeclarationExpression("System.String",
 "TestStringParameter") );
// Adds the constructor to the Members collection of the BaseType.
BaseType.Members.Add(stringConstructor);
            
// Declares a type that derives from BaseType and names it.
CodeTypeDeclaration DerivedType = new CodeTypeDeclaration("DerivedType");
// The DerivedType class inherits from the BaseType class.
DerivedType.BaseTypes.Add( new CodeTypeReference("BaseType")
 );
// Adds the new type to the namespace object's type collection.
Samples.Types.Add(DerivedType);        
        
// Declare a constructor that takes a string argument and calls the
 base class constructor with it.
CodeConstructor baseStringConstructor = new CodeConstructor();
baseStringConstructor.Attributes = MemberAttributes.Public;
// Declares a parameter of type string named "TestStringParameter".
    
baseStringConstructor.Parameters.Add( new CodeParameterDeclarationExpression("System.String",
 "TestStringParameter") );
// Calls a base class constructor with the TestStringParameter parameter.
baseStringConstructor.BaseConstructorArgs.Add( new CodeVariableReferenceExpression("TestStringParameter")
 );
// Adds the constructor to the Members collection of the DerivedType.
DerivedType.Members.Add(baseStringConstructor);

// Declares a constructor overload that calls another constructor for
 the type with a predefined argument.
CodeConstructor overloadConstructor = new CodeConstructor();
overloadConstructor.Attributes = MemberAttributes.Public;
// Sets the argument to pass to a base constructor method.
overloadConstructor.ChainedConstructorArgs.Add( new CodePrimitiveExpression("Test")
 );
// Adds the constructor to the Members collection of the DerivedType.
DerivedType.Members.Add(overloadConstructor);        

// Declares a constructor overload that calls the default constructor
 for the type.
CodeConstructor overloadConstructor2 = new CodeConstructor();
overloadConstructor2.Attributes = MemberAttributes.Public;
overloadConstructor2.Parameters.Add( new CodeParameterDeclarationExpression("System.Int32",
 "TestIntParameter") );
// Sets the argument to pass to a base constructor method.
overloadConstructor2.ChainedConstructorArgs.Add( new CodeSnippetExpression("")
 );
// Adds the constructor to the Members collection of the DerivedType.
DerivedType.Members.Add(overloadConstructor2);            
        
// A C# code generator produces the following source code for the preceeding
 example code:

// public class BaseType {
//     
//     public BaseType() {
//     }
//        
//     public BaseType(string TestStringParameter) {
//     }
// }
//    
// public class DerivedType : BaseType {
//        
//     public DerivedType(string TestStringParameter) : 
//             base(TestStringParameter) {
//     }
//        
//     public DerivedType() : 
//             this("Test") {
//     }
//
//     public DerivedType(int TestIntParameter) : 
//                this() {
//     }
// }

// This example declares two types, one of which inherits from another
,
// and creates a set of different styles of constructors using CodeConstructor.
// Creates a new CodeCompileUnit to contain the program graph.
CodeCompileUnit^ CompileUnit = gcnew CodeCompileUnit;

// Declares a new namespace object and names it.
CodeNamespace^ Samples = gcnew CodeNamespace( "Samples" );

// Adds the namespace object to the compile unit.
CompileUnit->Namespaces->Add( Samples );

// Adds a new namespace import for the System namespace.
Samples->Imports->Add( gcnew CodeNamespaceImport( "System" ) );

// Declares a new type and names it.
CodeTypeDeclaration^ BaseType = gcnew CodeTypeDeclaration( "BaseType" );

// Adds the new type to the namespace object's type collection.
Samples->Types->Add( BaseType );

// Declares a default constructor that takes no arguments.
CodeConstructor^ defaultConstructor = gcnew CodeConstructor;
defaultConstructor->Attributes = MemberAttributes::Public;

// Adds the constructor to the Members collection of the BaseType.
BaseType->Members->Add( defaultConstructor );

// Declares a constructor that takes a string argument.
CodeConstructor^ stringConstructor = gcnew CodeConstructor;
stringConstructor->Attributes = MemberAttributes::Public;

// Declares a parameter of type string named "TestStringParameter".
stringConstructor->Parameters->Add( gcnew CodeParameterDeclarationExpression(
 "System.String","TestStringParameter" ) );

// Adds the constructor to the Members collection of the BaseType.
BaseType->Members->Add( stringConstructor );

// Declares a type that derives from BaseType and names it.
CodeTypeDeclaration^ DerivedType = gcnew CodeTypeDeclaration( "DerivedType"
 );

// The DerivedType class inherits from the BaseType class.
DerivedType->BaseTypes->Add( gcnew CodeTypeReference( "BaseType"
 ) );

// Adds the new type to the namespace object's type collection.
Samples->Types->Add( DerivedType );

// Declare a constructor that takes a string argument and calls the
 base class constructor with it.
CodeConstructor^ baseStringConstructor = gcnew CodeConstructor;
baseStringConstructor->Attributes = MemberAttributes::Public;

// Declares a parameter of type string named "TestStringParameter".
    
baseStringConstructor->Parameters->Add( gcnew CodeParameterDeclarationExpression(
 "System.String","TestStringParameter" ) );

// Calls a base class constructor with the TestStringParameter parameter.
baseStringConstructor->BaseConstructorArgs->Add( gcnew CodeVariableReferenceExpression(
 "TestStringParameter" ) );

// Adds the constructor to the Members collection of the DerivedType.
DerivedType->Members->Add( baseStringConstructor );

// Declares a constructor overload that calls another constructor for
 the type with a predefined argument.
CodeConstructor^ overloadConstructor = gcnew CodeConstructor;
overloadConstructor->Attributes = MemberAttributes::Public;

// Sets the argument to pass to a base constructor method.
overloadConstructor->ChainedConstructorArgs->Add( gcnew CodePrimitiveExpression(
 "Test" ) );

// Adds the constructor to the Members collection of the DerivedType.
DerivedType->Members->Add( overloadConstructor );

// Declares a constructor overload that calls the default constructor
 for the type.
CodeConstructor^ overloadConstructor2 = gcnew CodeConstructor;
overloadConstructor2->Attributes = MemberAttributes::Public;
overloadConstructor2->Parameters->Add( gcnew CodeParameterDeclarationExpression(
 "System.Int32","TestIntParameter" ) );

// Sets the argument to pass to a base constructor method.
overloadConstructor2->ChainedConstructorArgs->Add( gcnew CodeSnippetExpression(
 "" ) );

// Adds the constructor to the Members collection of the DerivedType.
DerivedType->Members->Add( overloadConstructor2 );

// A C# code generator produces the following source code for the preceeding
 example code:
// public class BaseType {
//     
//     public BaseType() {
//     }
//        
//     public BaseType(string TestStringParameter) {
//     }
// }
//    
// public class DerivedType : BaseType {
//        
//     public DerivedType(string TestStringParameter) : 
//             base(TestStringParameter) {
//     }
//        
//     public DerivedType() : 
//             this("Test") {
//     }
//
//     public DerivedType(int TestIntParameter) : 
//                this() {
//     }
// }
// This example declares two types, one of which inherits from another
,
// and creates a set of different styles of constructors using
// CodeConstructor.Creates a new CodeCompileUnit to contain the program
 
// graph.
CodeCompileUnit compileUnit = new CodeCompileUnit();

// Declares a new namespace object and names it.
CodeNamespace samples = new CodeNamespace("Samples");

// Adds the namespace object to the compile unit.
compileUnit.get_Namespaces().Add(samples);

// Adds a new namespace import for the System namespace.
samples.get_Imports().Add(new CodeNamespaceImport("System"));

// Declares a new type and names it.
CodeTypeDeclaration baseType = new CodeTypeDeclaration("BaseType");

// Adds the new type to the namespace object's type collection.
samples.get_Types().Add(baseType);

// Declares a default constructor that takes no arguments.
CodeConstructor defaultConstructor = new CodeConstructor();

defaultConstructor.set_Attributes(MemberAttributes.Public);

// Adds the constructor to the Members collection of the BaseType.
baseType.get_Members().Add(defaultConstructor);

// Declares a constructor that takes a string argument.
CodeConstructor stringConstructor = new CodeConstructor();

stringConstructor.set_Attributes(MemberAttributes.Public);

// Declares a parameter of type string named "TestStringParameter".
stringConstructor.get_Parameters().Add(
    new CodeParameterDeclarationExpression("System.String"
,
    "TestStringParameter"));

// Adds the constructor to the Members collection of the BaseType.
baseType.get_Members().Add(stringConstructor);

// Declares a type that derives from BaseType and names it.
CodeTypeDeclaration derivedType =
    new CodeTypeDeclaration("DerivedType");

// The DerivedType class inherits from the BaseType class.
derivedType.get_BaseTypes().Add(new CodeTypeReference("BaseType"));

// Adds the new type to the namespace object's type collection.
samples.get_Types().Add(derivedType);

// Declare a constructor that takes a string argument and calls the
 
// base class constructor with it.
CodeConstructor baseStringConstructor = new CodeConstructor();

baseStringConstructor.set_Attributes(MemberAttributes.Public);

// Declares a parameter of type string named "TestStringParameter".
    
baseStringConstructor.get_Parameters().Add(
    new CodeParameterDeclarationExpression("System.String"
,
    "TestStringParameter"));

// Calls a base class constructor with the TestStringParameter parameter.
baseStringConstructor.get_BaseConstructorArgs().Add(
    new CodeVariableReferenceExpression("TestStringParameter"));

// Adds the constructor to the Members collection of the DerivedType.
derivedType.get_Members().Add(baseStringConstructor);

// Declares a constructor overload that calls another constructor for
// the type with a predefined argument.
CodeConstructor overloadConstructor = new CodeConstructor();

overloadConstructor.set_Attributes(MemberAttributes.Public);

// Sets the argument to pass to a base constructor method.
overloadConstructor.get_ChainedConstructorArgs().Add(
    new CodePrimitiveExpression("Test"));

// Adds the constructor to the Members collection of the DerivedType.
derivedType.get_Members().Add(overloadConstructor);

// Declares a constructor overload that calls the default constructor
// for the type.
CodeConstructor overloadConstructor2 = new CodeConstructor();

overloadConstructor2.set_Attributes(MemberAttributes.Public);
overloadConstructor2.get_Parameters().Add(
    new CodeParameterDeclarationExpression("System.Int32"
,
    "TestIntParameter"));

// Sets the argument to pass to a base constructor method.
overloadConstructor2.get_ChainedConstructorArgs().Add(
    new CodeSnippetExpression(""));

// Adds the constructor to the Members collection of the DerivedType.
derivedType.get_Members().Add(overloadConstructor2);
// A VJ# code generator produces the following source code for the
// preceeding
// example code:
// public class BaseType {
//     
//     public BaseType() {
//     }
//        
//     public BaseType(string TestStringParameter) {
//     }
// }
//    
// public class DerivedType extands BaseType {
//        
//     public DerivedType(string TestStringParameter)
//       {
//             super(TestStringParameter) 
//     }
//        
//     public DerivedType()
//     {
//             DerivedType("Test") 
//     }
//
//     public DerivedType(int TestIntParameter)
//     {
//                DerivedType() 
//     }
// }
継承階層継承階層
System.Object
   System.CodeDom.CodeObject
     System.CodeDom.CodeTypeMember
       System.CodeDom.CodeMemberMethod
        System.CodeDom.CodeConstructor
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

CodeConstructor コンストラクタ


CodeConstructor プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ Attributes  メンバ属性取得または設定します。 ( CodeTypeMember から継承されます。)
パブリック プロパティ BaseConstructorArgs 基本コンストラクタ引数コレクション取得します
パブリック プロパティ ChainedConstructorArgs チェイン コンストラクタ引数コレクション取得します
パブリック プロパティ Comments  メンバコメント コレクション取得します。 ( CodeTypeMember から継承されます。)
パブリック プロパティ CustomAttributes  メンバカスタム属性取得または設定します。 ( CodeTypeMember から継承されます。)
パブリック プロパティ EndDirectives  メンバ終了ディレクティブ取得します。 ( CodeTypeMember から継承されます。)
パブリック プロパティ ImplementationTypes  メソッド実装が PrivateImplementationType プロパティ示されるプライベート メソッド実装である場合除き、このメソッドによって実装されるインターフェイスデータ型取得します。 ( CodeMemberMethod から継承されます。)
パブリック プロパティ LinePragma  メンバステートメント発生する行を取得または設定します。 ( CodeTypeMember から継承されます。)
パブリック プロパティ Name  メンバの名前を取得または設定します。 ( CodeTypeMember から継承されます。)
パブリック プロパティ Parameters  メソッドパラメータ宣言取得します。 ( CodeMemberMethod から継承されます。)
パブリック プロパティ PrivateImplementationType  このメソッドによってプライベート メソッド実装されるインターフェイスがある場合に、そのインターフェイスデータ型取得または設定します。 ( CodeMemberMethod から継承されます。)
パブリック プロパティ ReturnType  メソッド戻り値データ型取得または設定します。 ( CodeMemberMethod から継承されます。)
パブリック プロパティ ReturnTypeCustomAttributes  メソッド戻り値の型のカスタム属性取得します。 ( CodeMemberMethod から継承されます。)
パブリック プロパティ StartDirectives  メンバ開始ディレクティブ取得します。 ( CodeTypeMember から継承されます。)
パブリック プロパティ Statements  メソッド内で、ステートメント取得します。 ( CodeMemberMethod から継承されます。)
パブリック プロパティ TypeParameters  現在のジェネリック メソッド型パラメータ取得します。 ( CodeMemberMethod から継承されます。)
パブリック プロパティ UserData  現在のオブジェクトユーザー定義可能なデータ取得または設定します。 ( CodeObject から継承されます。)
参照参照

関連項目

CodeConstructor クラス
System.CodeDom 名前空間

CodeConstructor メソッド


CodeConstructor メンバ

型のインスタンス コンストラクタ宣言表します

CodeConstructor データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド CodeConstructor CodeConstructor クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Attributes  メンバ属性取得または設定します。(CodeTypeMember から継承されます。)
パブリック プロパティ BaseConstructorArgs 基本コンストラクタ引数コレクション取得します
パブリック プロパティ ChainedConstructorArgs チェイン コンストラクタ引数コレクション取得します
パブリック プロパティ Comments  メンバコメント コレクション取得します。(CodeTypeMember から継承されます。)
パブリック プロパティ CustomAttributes  メンバカスタム属性取得または設定します。(CodeTypeMember から継承されます。)
パブリック プロパティ EndDirectives  メンバ終了ディレクティブ取得します。(CodeTypeMember から継承されます。)
パブリック プロパティ ImplementationTypes  メソッド実装が PrivateImplementationType プロパティ示されるプライベート メソッド実装である場合除き、このメソッドによって実装されるインターフェイスデータ型取得します。(CodeMemberMethod から継承されます。)
パブリック プロパティ LinePragma  メンバステートメント発生する行を取得または設定します。(CodeTypeMember から継承されます。)
パブリック プロパティ Name  メンバの名前を取得または設定します。(CodeTypeMember から継承されます。)
パブリック プロパティ Parameters  メソッドパラメータ宣言取得します。(CodeMemberMethod から継承されます。)
パブリック プロパティ PrivateImplementationType  このメソッドによってプライベート メソッド実装されるインターフェイスがある場合に、そのインターフェイスデータ型取得または設定します。(CodeMemberMethod から継承されます。)
パブリック プロパティ ReturnType  メソッド戻り値データ型取得または設定します。(CodeMemberMethod から継承されます。)
パブリック プロパティ ReturnTypeCustomAttributes  メソッド戻り値の型のカスタム属性取得します。(CodeMemberMethod から継承されます。)
パブリック プロパティ StartDirectives  メンバ開始ディレクティブ取得します。(CodeTypeMember から継承されます。)
パブリック プロパティ Statements  メソッド内で、ステートメント取得します。(CodeMemberMethod から継承されます。)
パブリック プロパティ TypeParameters  現在のジェネリック メソッド型パラメータ取得します。(CodeMemberMethod から継承されます。)
パブリック プロパティ UserData  現在のオブジェクトユーザー定義可能なデータ取得または設定します。(CodeObject から継承されます。)
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
パブリック イベントパブリック イベント
  名前 説明
パブリック イベント PopulateImplementationTypes  ImplementationTypes コレクション最初にアクセスされたときに発生するイベント。(CodeMemberMethod から継承されます。)
パブリック イベント PopulateParameters  Parameters コレクション最初にアクセスされたときに発生するイベント。(CodeMemberMethod から継承されます。)
パブリック イベント PopulateStatements  Statements コレクション最初にアクセスされたときに発生するイベント。(CodeMemberMethod から継承されます。)
参照参照

関連項目

CodeConstructor クラス
System.CodeDom 名前空間


このページでは「.NET Framework クラス ライブラリ リファレンス」からCodeConstructorを検索した結果を表示しています。
Weblioに収録されているすべての辞書からCodeConstructorを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からCodeConstructor を検索

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

辞書ショートカット

すべての辞書の索引

「CodeConstructor」の関連用語

CodeConstructorのお隣キーワード
検索ランキング

   

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



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

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

©2025 GRAS Group, Inc.RSS