3
Answers

Bluetooth connectivity in c#

madhuri hubli

madhuri hubli

13y
2.4k
1
I have a software application that wants to receive a data from the bluetooth enabled device like mobile or any other device,i want to use that data into the application,how do i get intimated that data has arrived from the device and i start using it in application?
Answers (3)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Use:

string[] items = fileName.Split('_');

items[0] will be the portion to the first _ and then items[1] will be the portion from the first _ to the second _.

These will exclude the underscores themselves.


Accepted
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
You could deal with that situation (or even two hyphen delimiters) by replacing this line:

   string[] items = fileName.Split('_');

with this:

   string[] items = fileName.Split(new char[]{'_', '-'});