I have the following method
public BITalinoFrame[] Read(int nbSamples)
{
try
{
return device.ReadFrames(nbSamples);
}
catch (Exception ex)
{
WriteLog("Error reading the frames: " + ex.Message);
}
return null;
}
What I need to know is what the part means:
public BITalinoFrame[] Read(int nbSamples)