I have created a simple C# .NET framework console application.
In it, I am trying to get a list of paired bluetooth devices currently connected to the computer. However, I cannot figure out, how to access any bluetooth services from within the code.
I looked around the internet, and all I could find was a way to do this in an universal windows project (UWP), where I can simply use the using Windows.Devices.Bluetooth
namespace which contains everything I would need, however in the .NET framework console application, this namespace is not available.
I don't need any advanced way to work with the bluetooth, all I need is a list of currently connected and paired bluetooth devices.