示例#1
0
 public BluetoothDevice(string name, string address, bool isConnected, bool isPaired, BluetoothCoD cod)
 {
     Name        = name;
     Address     = address;
     IsConnected = isConnected;
     IsPaired    = isPaired;
     Class       = cod;
 }
示例#2
0
 public BluetoothDevice(uint cod)
 {
     Name    = string.Empty;
     Address = string.Empty;
     Class   = new BluetoothCoD(cod);
 }