FrameRow Class

Represents one row of a data frame.

Definition

Namespace: Meta.Numerics.Data
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public sealed class FrameRow : IReadOnlyDictionary<string, Object>, 
	IEnumerable<KeyValuePair<string, Object>>, IEnumerable, 
	IReadOnlyCollection<KeyValuePair<string, Object>>, IReadOnlyList<Object>, 
	IEnumerable<Object>, IReadOnlyCollection<Object>
Inheritance
Object    FrameRow
Implements
IEnumerableKeyValuePairString, Object, IEnumerableObject, IReadOnlyCollectionKeyValuePairString, Object, IReadOnlyCollectionObject, IReadOnlyDictionaryString, Object, IReadOnlyListObject, IEnumerable

Properties

Count Gets the number of columns in the row.
ItemInt32 Gets the value of the column with the given index.
ItemString Gets the value of the column with the given name.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetIndexOf Gets the index of the column with the given name.
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToDictionary Returns a dictionary containing the row data.
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also