MCAEmotiv.Interop.EEGDataEntry.WithMarker C# (CSharp) Méthode

WithMarker() public méthode

Create an identical entry except for the marker field. Re-uses the channel data
public WithMarker ( int marker ) : EEGDataEntry
marker int
Résultat EEGDataEntry
        public EEGDataEntry WithMarker(int marker)
        {
            return new EEGDataEntry(marker, this.TimeStamp, this.RelativeTimeStamp, this.Data);
        }