@@ -19,21 +19,21 @@ To make a more portable but platform-dependent product, use `dotnet publish -C D
1919
2020These examples show how to transmit a numeric multi-channel time series through LSL:
2121
22- - [ Sending a multi-channel time series into LSL.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/SendData.cs )
23- - [ Receiving a multi-channel time series from LSL.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/ReceiveData.cs )
22+ - [ Sending a multi-channel time series into LSL.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/SendData )
23+ - [ Receiving a multi-channel time series from LSL.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/ReceiveData )
2424
2525The following examples show how to transmit data in form of chunks instead of samples, which can be
2626more convenient.
2727
28- - [ Sending a multi-channel time series in chunks.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/SendDataInChunks.cs )
29- - [ Receiving a multi-channel time series in chunks.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/ReceiveDataInChunks.cs )
28+ - [ Sending a multi-channel time series in chunks.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/SendDataInChunks )
29+ - [ Receiving a multi-channel time series in chunks.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/ReceiveDataInChunks )
3030
3131These examples show a special-purpose use case that is mostly relevant for stimulus-presentation
3232programs or other applications that want to emit 'event' markers or other application state.
3333
3434The stream here is single-channel and has irregular sampling rate, but the value per channel is a string:
35- - [ Sending string-formatted irregular streams.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/SendStringMarkers.cs )
36- - [ Receiving string-formatted irregular streams.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/ReceiveStringMarkers.cs )
35+ - [ Sending string-formatted irregular streams.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/SendStringMarkers )
36+ - [ Receiving string-formatted irregular streams.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/ReceiveStringMarkers )
3737
3838The last example shows how to attach properly formatted meta-data to a stream, and how to read it
3939out again at the receiving end.
@@ -42,4 +42,4 @@ LSL has adopted the convention to name meta-data fields according to the XDF fil
4242specification whenever the content type matches (for example EEG, Gaze, MoCap, VideoRaw, etc);
4343the spec is [ here] ( https://github.com/sccn/xdf/wiki/Meta-Data ) .
4444
45- - [ Handling stream meta-data.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/HandleMetaData.cs )
45+ - [ Handling stream meta-data.] ( https://github.com/labstreaminglayer/liblsl-Csharp/blob/master/examples/HandleMetaData )
0 commit comments