Hi,
I am trying to get mac address of BT Adapter
using (var radios = new wclBluetoothRadios())
{
var dis = new wclBluetoothDiscovery();
dis.EnumRadios(radios);
if (radios.Count > 0)
{
var Radio = radios[0];
string bbc = string.Empty;
var abc = Radio.GetAddress(ref bbc);
}
return null;
}
but it return empty string, Please help me