[This is preliminary documentation and is subject to change.]
Item associated with current event
Namespace: Tools.CollectionsT.GenericTAssembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public T Item { get; set; } |
| Visual Basic |
|---|
Public Property Item As T
Get
Set |
| Visual C++ |
|---|
public:
property T Item {
T get ();
void set (T value);
} |
| F# |
|---|
member Item : 'T with get, set
|
| JScript |
|---|
function get Item () : T
function set Item (value : T) |
Exceptions
See Also
Version History
1.5.2
- When T is not value type and value being set is same (in rerm of references) as current value, no change is done, no exception is thrown (even if ReadOnly is true).