Click or drag to resize

PropertiesGetListT Method

Retrieves the list of items stored with the specified key. If no entry with the specified key exists, this method returns an empty list.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public IReadOnlyList<T> GetList<T>(
	string key
)

Parameters

key  String

[Missing <param name="key"/> documentation for "M:Altaxo.Main.Services.Properties.GetList``1(System.String)"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Main.Services.Properties.GetList``1(System.String)"]

Return Value

IReadOnlyListT

[Missing <returns> documentation for "M:Altaxo.Main.Services.Properties.GetList``1(System.String)"]

Remarks
This method returns a copy of the list used internally; you need to call SetListT(String, IEnumerableT) if you want to store the changed list.
See Also