On 12.11.2011 18:30, Derik Palacino wrote:
> I should also mention that this is not an "Emulator Only Issue", I had hoped
> that it was, but that exact same results (different address of course) are
> present on the device in both iOS 4.3 and 5.0. I'll post back if I find a
> better way of getting the MAC address through MonoTouch.
Please file a bug and mention that Mono for MacOS has the same issue:
using System;
using System.Net.NetworkInformation;
class Test
{
static void Main ()
{
foreach (var i in NetworkInterface.GetAllNetworkInterfaces()) {
Console.WriteLine ("{0} {1}",
i.Id,
i.GetPhysicalAddress());
}
}
}
Robert
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch