Represents one row of a data frame.
Inheritance Hierarchy
Namespace:
Meta.Numerics.Data
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public sealed class FrameRow : IReadOnlyDictionary<string, Object>,
IReadOnlyCollection<KeyValuePair<string, Object>>, IEnumerable<KeyValuePair<string, Object>>,
IEnumerable, IReadOnlyList<Object>, IReadOnlyCollection<Object>,
IEnumerable<Object>
Public NotInheritable Class FrameRow
Implements IReadOnlyDictionary(Of String, Object),
IReadOnlyCollection(Of KeyValuePair(Of String, Object)), IEnumerable(Of KeyValuePair(Of String, Object)),
IEnumerable, IReadOnlyList(Of Object), IReadOnlyCollection(Of Object),
IEnumerable(Of Object)
public ref class FrameRow sealed : IReadOnlyDictionary<String^, Object^>,
IReadOnlyCollection<KeyValuePair<String^, Object^>>, IEnumerable<KeyValuePair<String^, Object^>>,
IEnumerable, IReadOnlyList<Object^>, IReadOnlyCollection<Object^>,
IEnumerable<Object^>
[<SealedAttribute>]
type FrameRow =
class
interface IReadOnlyDictionary<string, Object>
interface IReadOnlyCollection<KeyValuePair<string, Object>>
interface IEnumerable<KeyValuePair<string, Object>>
interface IEnumerable
interface IReadOnlyList<Object>
interface IReadOnlyCollection<Object>
interface IEnumerable<Object>
end
The FrameRow type exposes the following members.
Properties
| Name | Description |
---|
| Count |
Gets the number of columns in the row.
|
| Item[Int32] |
Gets the value of the column with the given index.
|
| Item[String] |
Gets the value of the column with the given name.
|
TopMethods
| Name | Description |
---|
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
| GetHashCode | Serves as the default hash function. (Inherited from Object.) |
| GetIndexOf |
Gets the index of the column with the given name.
|
| GetType | Gets the Type of the current instance. (Inherited from Object.) |
| ToDictionary |
Returns a dictionary containing the row data.
|
| ToString | Returns a string that represents the current object. (Inherited from Object.) |
TopSee Also