ArchivableDictionary.Set Method (String, IEnumerable(Boolean))

ArchivableDictionarySet Method (String, IEnumerableBoolean)

Sets a list, an array or any enumerable of Boolean.

Namespace:  Rhino.Collections
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public bool Set(
	string key,
	IEnumerable<bool> val
)
Public Function Set ( 
	key As String,
	val As IEnumerable(Of Boolean)
) As Boolean

Parameters

key
Type: SystemString
A text key.
val
Type: System.Collections.GenericIEnumerableBoolean
A value for that key.

Because this interface is a reference type, changes to the assigned object will modify this entry inside the dictionary.

It is up to the user to clone this entry when appropriate.

Return Value

Type: Boolean
true if set operation succeeded, otherwise false.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.8
See Also