Click or drag to resize
SeriesBuilderK, V Class
The type can be used for creating series using mutation. You can add items using `Add` and get the resulting series using the `Series` property. ## Using from C# The type supports the C# collection builder pattern: var s = new SeriesBuilder<string, double> { { "A", 1.0 }, { "B", 2.0 }, { "C", 3.0 } }.Series; The type also supports the `dynamic` operator: dynamic sb = new SeriesBuilder<string, obj>(); sb.ID = 1; sb.Value = 3.4; [category:Specialized frame and series types]
Inheritance Hierarchy
SystemObject
  DeedleSeriesBuilderK, V
    DeedleSeriesBuilderK

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
[SerializableAttribute]
public class SeriesBuilder<K, V> : IDynamicMetaObjectProvider, 
	IDictionary<K, V>, IEnumerable<KeyValuePair<K, V>>, IEnumerable

Type Parameters

K
V

The SeriesBuilderK, V type exposes the following members.

Constructors
  NameDescription
Public methodSeriesBuilderK, V
Initializes a new instance of the SeriesBuilderK, V class
Top
Properties
  NameDescription
Public propertySeries
Returns the constructed series. The series is an immutable copy of the current values and so further additions will not change the returned series.
Top
Methods
  NameDescription
Public methodAdd
Add specified key and value to the series being build
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Operators
  NameDescription
Public operatorStatic memberDynamicAssignment
Top
Extension Methods
See Also