コード例 #1
0
        internal static Dot11MacAddress[] ConvertPhysicalAddresses(PhysicalAddress[] phyAddresses)
        {
            int length = phyAddresses.Length;

            Dot11MacAddress[] array = new Dot11MacAddress[length];
            for (int i = 0; i < length; i++)
            {
                array[i] = Dot11MacAddress.FromPhysicalAddress(phyAddresses[i]);
            }
            return(array);
        }
コード例 #2
0
 internal static Dot11MacAddress PhysicalAddressToDot11MacAddress(PhysicalAddress phyAddress)
 {
     return(Dot11MacAddress.FromPhysicalAddress(phyAddress));
 }