Create a binary File Storage with the specific data

Namespace:  Emgu.Util
Assembly:  Emgu.Util (in Emgu.Util.dll) Version: 2.1.0.793 (2.1.0.793)

Syntax

         
 C#  Visual Basic  Visual C++ 
public BinaryFileStorage(
	string fileName,
	IEnumerable<T> samples
)
Public Sub New ( _
	fileName As String, _
	samples As IEnumerable(Of T) _
)
public:
BinaryFileStorage(
	String^ fileName, 
	IEnumerable<T>^ samples
)

Parameters

fileName
String
The file name of the storage
samples
IEnumerable<(Of <(T>)>)
The data which will be stored in the storage

See Also