CodeStatementCollection Oluşturucular
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
CodeStatementCollection sınıfının yeni bir örneğini başlatır.
Aşırı Yüklemeler
CodeStatementCollection() |
CodeStatementCollection sınıfının yeni bir örneğini başlatır. |
CodeStatementCollection(CodeStatement[]) |
Belirtilen nesne dizisini CodeStatementCollection içeren sınıfının yeni bir örneğini CodeStatement başlatır. |
CodeStatementCollection(CodeStatementCollection) |
Belirtilen kaynak koleksiyonun CodeStatementCollection öğelerini içeren sınıfının yeni bir örneğini başlatır. |
CodeStatementCollection()
- Kaynak:
- CodeStatementCollection.cs
- Kaynak:
- CodeStatementCollection.cs
- Kaynak:
- CodeStatementCollection.cs
CodeStatementCollection sınıfının yeni bir örneğini başlatır.
public:
CodeStatementCollection();
public CodeStatementCollection ();
Public Sub New ()
Örnekler
Aşağıdaki örnekte sınıfın boş bir örneğinin nasıl oluşturulacağı gösterilmektedir CodeStatementCollection .
// Creates an empty CodeStatementCollection.
CodeStatementCollection^ collection = gcnew CodeStatementCollection;
// Creates an empty CodeStatementCollection.
CodeStatementCollection collection = new CodeStatementCollection();
' Creates an empty CodeStatementCollection.
Dim collection As New CodeStatementCollection
Şunlara uygulanır
CodeStatementCollection(CodeStatement[])
- Kaynak:
- CodeStatementCollection.cs
- Kaynak:
- CodeStatementCollection.cs
- Kaynak:
- CodeStatementCollection.cs
Belirtilen nesne dizisini CodeStatementCollection içeren sınıfının yeni bir örneğini CodeStatement başlatır.
public:
CodeStatementCollection(cli::array <System::CodeDom::CodeStatement ^> ^ value);
public CodeStatementCollection (System.CodeDom.CodeStatement[] value);
new System.CodeDom.CodeStatementCollection : System.CodeDom.CodeStatement[] -> System.CodeDom.CodeStatementCollection
Public Sub New (value As CodeStatement())
Parametreler
- value
- CodeStatement[]
Koleksiyonun CodeStatement başlatıldığı nesne dizisi.
Özel durumlar
value
, null
değeridir.
Şunlara uygulanır
CodeStatementCollection(CodeStatementCollection)
- Kaynak:
- CodeStatementCollection.cs
- Kaynak:
- CodeStatementCollection.cs
- Kaynak:
- CodeStatementCollection.cs
Belirtilen kaynak koleksiyonun CodeStatementCollection öğelerini içeren sınıfının yeni bir örneğini başlatır.
public:
CodeStatementCollection(System::CodeDom::CodeStatementCollection ^ value);
public CodeStatementCollection (System.CodeDom.CodeStatementCollection value);
new System.CodeDom.CodeStatementCollection : System.CodeDom.CodeStatementCollection -> System.CodeDom.CodeStatementCollection
Public Sub New (value As CodeStatementCollection)
Parametreler
- value
- CodeStatementCollection
CodeStatementCollection Koleksiyonun başlatıldığı nesne.
Özel durumlar
value
, null
değeridir.