[This is preliminary documentation and is subject to change.]

Gets item of SharedStableList with given key. Creates new item if given key does not exists.

Namespace: Tools.WindowsT.FormsT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
protected static ListWithEvents<string> GetSharedStableList(
	string Name
)
Visual Basic
Protected Shared Function GetSharedStableList ( _
	Name As String _
) As ListWithEvents(Of String)
Visual C++
protected:
static ListWithEvents<String^>^ GetSharedStableList(
	String^ Name
)
F#
static member GetSharedStableList : 
        Name:string -> ListWithEvents<string> 
JScript
protected static function GetSharedStableList(
	Name : String
) : ListWithEvents<String>

Parameters

Name
Type: System..::..String
Key of item to be returned

Return Value

Item form SharedStableList with given key. If such key is not presents adds an empty collection for it. If Name is Empty or null returns null.

See Also