0

I have a non-UWP .NET app and would like to use BLE. The only support for BLE in windows comes from the UWP API.

My question is can I access the UWP API from my .NET app, and how?

Thanks

slaw
  • 611
  • 2
  • 7
  • 20

1 Answers1

1

No it's not from UWP API. It's from WinRT API which you can access from any .NET app, and even from a normal C++ app as well.

See for example Bluetooth Low Energy in .Net (C#).

Emil
  • 16,784
  • 2
  • 41
  • 52