Constructor.

Namespace: MonoSoftware.Core.Collections
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public ReadOnlyDictionary(
	IDictionary<TKey, TValue> source
)
Visual Basic
Public Sub New ( 
	source As IDictionary(Of TKey, TValue)
)
Visual C++
public:
ReadOnlyDictionary(
	IDictionary<TKey, TValue>^ source
)
F#
new : 
        source : IDictionary<'TKey, 'TValue> -> ReadOnlyDictionary

Parameters

source
Type: System.Collections.Generic..::..IDictionary<(Of <(<'TKey, TValue>)>)>
Source dictionary

See Also