Gets/sets an object with the matching key to the provided value. When setting the value, if another object with a matching key exists, it will be overwritten. If overwriting is not desired, use the Add() method instead.

Namespace: iCal
Assembly: ICalVCard (in ICalVCard.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
T this[
	U key
] { get; set; }
Visual Basic
Default Property Item ( _
	key As U _
) As T
	Get
	Set
Visual C++
property T default[U key] {
	T get (U key);
	void set (U key, T value);
}

Parameters

key
Type: U

See Also