FrameRowToDictionary Method |
Returns a dictionary containing the row data.
Namespace:
Meta.Numerics.Data
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public Dictionary<string, Object> ToDictionary()
Public Function ToDictionary As Dictionary(Of String, Object)
public:
Dictionary<String^, Object^>^ ToDictionary()
member ToDictionary : unit -> Dictionary<string, Object>
Return Value
Type:
DictionaryString,
ObjectA dictionary whose keys are the column names
and whose values are the corresponding cell values for the row.
This dictionary is an independent copy, so any subsequent changes to the
frame data will not change it.
See Also