Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Adds a FieldInfo to the end of the collection.
Namespace: Microsoft.VisualStudio.Shell.Design
Assembly: Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'Declaration
Public Function Add ( _
name As String, _
fieldType As Type, _
attributes As Attribute() _
) As Integer
public int Add(
string name,
Type fieldType,
Attribute[] attributes
)
public:
int Add(
String^ name,
Type^ fieldType,
array<Attribute^>^ attributes
)
member Add :
name:string *
fieldType:Type *
attributes:Attribute[] -> int
public function Add(
name : String,
fieldType : Type,
attributes : Attribute[]
) : int
Parameters
name
Type: System.StringThe name of the field to add.
fieldType
Type: System.TypeThe type of field.
attributes
Type: array<System.Attribute[]
Return Value
Type: System.Int32
The index at which the value has been added.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | name or fieldType or an element in attributes is nulla null reference (Nothing in Visual Basic). attributes itself may be nulla null reference (Nothing in Visual Basic). |
| ArgumentException | fieldType is not a run-time type. |
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.