MCAEmotiv.Interop.EEGDataEntry.WithMarker C# (CSharp) Method

WithMarker() public method

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