Reads vectors with the specified names from the data stream.
Namespace:
Extreme.Data
Assembly:
Extreme.Data (in Extreme.Data.dll) Version: 3.1.0
public Dictionary<string, Vector<T>> ReadVectors<T>(
IEnumerable<string> names,
bool strict = true
)
Public Function ReadVectors(Of T) (
names As IEnumerable(Of String),
Optional strict As Boolean = true
) As Dictionary(Of String, Vector(Of T))
public:
generic<typename T>
Dictionary<String^, Vector<T>^>^ ReadVectors(
IEnumerable<String^>^ names,
bool strict = true
)
member ReadVectors :
names : IEnumerable<string> *
?strict : bool
(* Defaults:
let _strict = defaultArg strict true
*)
-> Dictionary<string, Vector<'T>>
Parameters
- names
- Type: System.Collections.GenericIEnumerableString
A sequence of names of the vectors to read. - strict (Optional)
- Type: SystemBoolean
Specifies whether the element type
should be matched exactly (), or whether
conversions are allowed (, the default).
Type Parameters
- T
- The element type of the vectors.
Return Value
Type:
DictionaryString,
VectorTA dictionary containing the vectors
read from the data stream using their name as the key.
Reference