CodeStatementCollection Конструкторы
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Инициализирует новый экземпляр класса CodeStatementCollection.
Перегрузки
CodeStatementCollection() |
Инициализирует новый экземпляр класса CodeStatementCollection. |
CodeStatementCollection(CodeStatement[]) |
Инициализирует новый экземпляр класса CodeStatementCollection, содержащий указанный массив объектов CodeStatement. |
CodeStatementCollection(CodeStatementCollection) |
Инициализирует новый экземпляр класса CodeStatementCollection, содержащий элементы указанной исходной коллекции. |
CodeStatementCollection()
- Исходный код:
- CodeStatementCollection.cs
- Исходный код:
- CodeStatementCollection.cs
- Исходный код:
- CodeStatementCollection.cs
Инициализирует новый экземпляр класса CodeStatementCollection.
public:
CodeStatementCollection();
public CodeStatementCollection ();
Public Sub New ()
Примеры
В следующем примере показано, как создать пустой 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
Применяется к
CodeStatementCollection(CodeStatement[])
- Исходный код:
- CodeStatementCollection.cs
- Исходный код:
- CodeStatementCollection.cs
- Исходный код:
- CodeStatementCollection.cs
Инициализирует новый экземпляр класса CodeStatementCollection, содержащий указанный массив объектов CodeStatement.
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())
Параметры
- value
- CodeStatement[]
Массив объектов CodeStatement, которыми следует инициализировать коллекцию.
Исключения
value
имеет значение null
.
Применяется к
CodeStatementCollection(CodeStatementCollection)
- Исходный код:
- CodeStatementCollection.cs
- Исходный код:
- CodeStatementCollection.cs
- Исходный код:
- CodeStatementCollection.cs
Инициализирует новый экземпляр класса CodeStatementCollection, содержащий элементы указанной исходной коллекции.
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)
Параметры
- value
- CodeStatementCollection
Объект CodeStatementCollection, с помощью которого следует инициализировать коллекцию.
Исключения
value
имеет значение null
.