Inserts an element into the list at the specified index.

Namespace: LLCryptoLib.Security.Certificates
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public void Insert(
	int index,
	NameAttribute value
)
Visual Basic
Public Sub Insert ( _
	index As Integer, _
	value As NameAttribute _
)
Visual C++
public:
void Insert(
	int index, 
	NameAttribute value
)

Parameters

index
Type: System..::..Int32
The zero-based index at which value should be inserted.
value
Type: LLCryptoLib.Security.Certificates..::..NameAttribute
The NameAttribute to insert.

See Also