← Back to carmenta.com
Carmenta Engine SDK Documentation
×

DataSetCollection Class

A strongly typed collection of DataSet elements that can be accessed by index.

Namespace: Carmenta.Engine
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Thread safety: Members defined in this class are, in general, not thread-safe. Show

Syntax

C#
public class DataSetCollection : EngineObject,
	IList< DataSet >

Remarks

The DataSetCollection class is a collection that is implemented inside the Carmenta Engine kernel. It is implemented as an array whose size is dynamically increased as required.

Note

Carmenta Engine collections that hold reference types can not hold null values. Attempts to insert a null reference (Nothing in Visual Basic or None in Python) will result in an exception.

Performance Considerations

The DataSetCollection class is implemented inside the Carmenta Engine kernel which introduces an extra cost when it is accessed compared to when a native API collection is accessed. This means that it is to your advantage to use the collections provided by the native API when you intend to hold references to Carmenta Engine objects and work with them in your application and only explicitly instantiate a Carmenta Engine collection when you create an instance of a Carmenta Engine class that can take ownership of the collection. For example, the LineGeometry class has a constructor that takes a PointCollection which the new LineGeometry instance will take ownership of.

Tip

For every method in Carmenta Engine that takes a Carmenta Engine collection as a parameter there exists an overload that takes the native API representation.

Inheritance Hierarchy

System.Object (not available in C#)
  EngineObject
    DataSetCollection

Platforms

Windows, Linux, Android

See Also

Reference

Core Module

DataSetCollection Members

The DataSetCollection type has the following members.

Constructors

NameDescription
DataSetCollectionInitializes a new instance of the DataSetCollection class.

Properties

NameDescription
CountGets the number of items in the collection.
IsDisposedGets a value that tells whether the current DataSetCollection has been disposed. Inherited from EngineObject
IsReadOnlyGets a value indicating whether the collection is read-only.
ItemGets or sets the element at the specified index.
NativeHandleGets the native Carmenta Engine kernel object the current DataSetCollection represents. Inherited from EngineObject

Methods

NameDescription
AddAdds an object to the end of the collection.
AddRangeOverloaded. Adds the contents of another collection to the end of this collection.
ClearRemoves all elements from the collection.
CloneCreates a copy of an object. Inherited from EngineObject
ContainsDetermines whether the collection contains the specified element.
CopyToCopies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
CountGets the number of items in the collection.
DisposeReleases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject
EqualsDetermines whether this instance is equal to another. Inherited from EngineObject
GetEnumeratorReturns an enumerator that iterates through the collection.
IndexOfTries to find the index of the first occurrence of a value in the collection.
InsertInserts an element into the collection at the specified index.
RemoveRemoves the first occurrence of the specified object from the collection.
RemoveAtRemoves the element at the specified index of the collection.
ReservePreallocates space in the internal kernel array to avoid unnecessary memory reallocations.

By accessing the information on this site you accept our terms and conditions and privacy policy.
This site uses cookies to enhance your experience and provide additional functionality.

Accept