Indexer. Get, set field value by field name.

Namespace: Cartella.Interfaces
Assembly: CartellaBase (in CartellaBase.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

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

Parameters

key
Type: System..::..String
Field Name

Field Value

String

Return Value

Field Value as string of given field name. Throws an ArgumentException if the member doesn't exist for a given key

See Also