Create a binary File Storage with the specific data

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

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