コード例 #1
0
        int IComparable.CompareTo(object obj)
        {
            BluetoothAddress address = obj as BluetoothAddress;

            if (address != null)
            {
                return(this.ToInt64().CompareTo(address.ToInt64()));
            }
            return(-1);
        }